feat(fe): added header
ToDo: connect clock to shows, style corrections
This commit is contained in:
parent
0b570a25af
commit
75d56a1b7b
3 changed files with 16 additions and 6 deletions
|
@ -3,6 +3,9 @@ const props = defineProps([
|
|||
'item'
|
||||
]);
|
||||
|
||||
/**
|
||||
* Get Show/Spot icon
|
||||
*/
|
||||
const icon = () => {
|
||||
switch (props.item.type) {
|
||||
case 'show':
|
||||
|
@ -11,9 +14,6 @@ const icon = () => {
|
|||
case 'ad':
|
||||
return 'mdi-advertisements';
|
||||
break;
|
||||
case 'jingle':
|
||||
return 'mdi-music';
|
||||
break;
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue