Skip to content

Commit

Permalink
convert all props.props.item.<prop> to props.props.item.columns.<prop>
Browse files Browse the repository at this point in the history
  • Loading branch information
f-w committed Jan 28, 2024
1 parent 08a97ec commit fdeda9b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions client/src/components/notifications.vue
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
<v-icon>info</v-icon>
<v-tooltip activator="parent" location="bottom">details</v-tooltip>
</v-btn>
<template v-if="props.props.item.state === 'new'">
<template v-if="props.props.item.columns.state === 'new'">
<v-btn
@click="props.editItem(props.props)"
density="compact"
Expand All @@ -58,8 +58,8 @@
<script>
import ComboTable from './shared/combo-table';
import 'jquery-ui-bundle';
import {mapActions} from 'pinia';
import {useDefaultStore} from '../store';
import { mapActions } from 'pinia';
import { useDefaultStore } from '../store';
// one-time definition of custom jquery-ui widget
$.widget('custom.annotatedAutoComplete', $.ui.autocomplete, {
_create: function () {
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "notify-bc",
"version": "5.0.13",
"version": "5.0.14",
"dbSchemaVersion": "0.9.0",
"description": "A versatile notification API server",
"author": "f-w",
Expand Down

0 comments on commit fdeda9b

Please sign in to comment.