Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(spoolman): allow selecting table columns in spool selection dialog #1338

Merged
merged 7 commits into from
Feb 3, 2024
16 changes: 14 additions & 2 deletions src/components/ui/AppDialog.vue
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,17 @@
:disabled="disabled"
@submit.prevent="handleSave"
>
<v-card>
<v-card-title class="card-heading py-2">
<v-card
:class="{
'collapsable-card': titleShadow
}"
>
<v-card-title
class="card-heading py-2"
:class="{
'collapsable-card-title': titleShadow
}"
>
<slot name="title">
<span class="focus--text">{{ title }}</span>
</slot>
Expand Down Expand Up @@ -100,6 +109,9 @@ export default class AppDialog extends Vue {
@Prop({ type: Boolean })
readonly noActions?: boolean

@Prop({ type: Boolean })
readonly titleShadow?: boolean

@PropSync('valid', { type: Boolean })
validModel?: boolean

Expand Down
Loading