fix(FE): typo
This commit is contained in:
parent
47df64bd96
commit
f88d508ec4
1 changed files with 3 additions and 3 deletions
|
@ -1,6 +1,6 @@
|
|||
import { VTextField } from "vuetify/components";
|
||||
|
||||
export interface ShowDjs {
|
||||
export interface ShowDJs {
|
||||
id?: number;
|
||||
subjsId: number;
|
||||
showId: number;
|
||||
|
@ -11,7 +11,7 @@ export interface User {
|
|||
login: string;
|
||||
}
|
||||
|
||||
export function showDjsForm(item: ShowDjs) {
|
||||
export function showDjsForm(item: ShowDJs) {
|
||||
const visibleFields = {
|
||||
subjsId: 'Presentatore',
|
||||
showId: 'Programma'
|
||||
|
@ -22,7 +22,7 @@ export function showDjsForm(item: ShowDjs) {
|
|||
Object.keys(visibleFields).forEach((key) => {
|
||||
fields[key] = {
|
||||
label: visibleFields[key],
|
||||
value: item[key as keyof ShowDjs],
|
||||
value: item[key as keyof ShowDJs],
|
||||
component: VTextField,
|
||||
disabled: false
|
||||
};
|
Loading…
Add table
Add a link
Reference in a new issue