Skip to content

Commit

Permalink
Formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
4cello committed Mar 30, 2024
1 parent 0948704 commit a965a2f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/components/TheSelectPrinterDialog.vue
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@
<v-col class="col-6">
<v-text-field
v-model="dialogAddPrinter.path"
:rules="[(v) => !v || v.startsWith('/') || 'Path must start with /',]"
:rules="[(v) => !v || v.startsWith('/') || 'Path must start with /']"
:label="$t('SelectPrinterDialog.Path')"
hide-details="auto"
outlined
Expand Down Expand Up @@ -145,7 +145,7 @@
<v-col class="col-6">
<v-text-field
v-model="dialogEditPrinter.path"
:rules="[(v) => !v || v.startsWith('/') || 'Path must start with /',]"
:rules="[(v) => !v || v.startsWith('/') || 'Path must start with /']"
:label="$t('SelectPrinterDialog.Path')"
hide-details="auto"
outlined
Expand Down
2 changes: 1 addition & 1 deletion src/components/settings/SettingsRemotePrintersTab.vue
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@
<settings-row :title="$t('Settings.RemotePrintersTab.Path')">
<v-text-field
v-model="form.path"
:rules="[(v) => !v || v.startsWith('/') || 'Path must start with /',]"
:rules="[(v) => !v || v.startsWith('/') || 'Path must start with /']"
hide-details="auto"
outlined
dense></v-text-field>
Expand Down

0 comments on commit a965a2f

Please sign in to comment.