Skip to content

Commit

Permalink
get configurations.vue working
Browse files Browse the repository at this point in the history
  • Loading branch information
f-w committed Dec 11, 2024
1 parent 4a939bb commit b38c765
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions client/src/components/configurations.vue
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@
<combo-table :headers="headers" :schema="schema" model="configurations">
<template #default="props">
<tr>
<td>{{ props.props.item.columns.name }}</td>
<td>{{ props.props.item.columns.serviceName }}</td>
<td class="text-right">{{ props.props.item.columns.updated }}</td>
<td>{{ props.props.props.item.columns.name }}</td>
<td>{{ props.props.props.item.columns.serviceName }}</td>
<td class="text-right">{{ props.props.props.item.columns.updated }}</td>
<td>
<v-btn
@click="props.viewItem(props.props)"
Expand All @@ -34,7 +34,7 @@
<template
v-if="
['dbSchemaVersion', 'rsa'].indexOf(
props.props.item.columns.name,
props.props.props.item.columns.name,
) < 0
"
>
Expand All @@ -51,7 +51,7 @@
<template
v-if="
['dbSchemaVersion', 'rsa'].indexOf(
props.props.item.columns.name,
props.props.props.item.columns.name,
) < 0
"
>
Expand Down

0 comments on commit b38c765

Please sign in to comment.