Skip to content

Commit

Permalink
refactor: refactor HistoryListPanelNoteDialog
Browse files Browse the repository at this point in the history
Signed-off-by: Stefan Dej <[email protected]>
  • Loading branch information
meteyou committed Apr 27, 2024
1 parent 05dafca commit 9ee61d8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/dialogs/HistoryListPanelNoteDialog.vue
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
</v-row>
</v-card-text>
<v-card-actions>
<v-spacer></v-spacer>
<v-spacer />
<v-btn color="" text @click="closeDialog">{{ $t('History.Cancel') }}</v-btn>
<v-btn color="primary" text @click="saveNote">{{ $t('History.Save') }}</v-btn>
</v-card-actions>
Expand All @@ -39,7 +39,7 @@ import { mdiCloseThick, mdiNotebookEdit, mdiNotebookPlus } from '@mdi/js'
export default class HistoryListPanelNoteDialog extends Mixins(BaseMixin) {
mdiCloseThick = mdiCloseThick
private note: string = ''
note: string = ''
@Prop({ type: Boolean, required: true }) readonly show!: boolean
@Prop({ type: String, required: true }) readonly type!: 'create' | 'edit'
Expand Down

0 comments on commit 9ee61d8

Please sign in to comment.