mirror of
https://iceshrimp.dev/limepotato/jormungandr-bite.git
synced 2024-11-22 01:47:39 -07:00
antenna icon from ph-flying-saucer to ph-cell-tower
This commit is contained in:
parent
c03b6c1dce
commit
21e4eeb67f
9 changed files with 10 additions and 10 deletions
|
@ -63,7 +63,7 @@ export const navbarItemDef = reactive({
|
||||||
*/
|
*/
|
||||||
antennas: {
|
antennas: {
|
||||||
title: "antennas",
|
title: "antennas",
|
||||||
icon: "ph-flying-saucer ph-bold ph-lg",
|
icon: "ph-cell-tower ph-bold ph-lg",
|
||||||
show: computed(() => $i != null),
|
show: computed(() => $i != null),
|
||||||
to: "/my/antennas",
|
to: "/my/antennas",
|
||||||
},
|
},
|
||||||
|
|
|
@ -60,7 +60,7 @@
|
||||||
</div>
|
</div>
|
||||||
<div class="item _panel online">
|
<div class="item _panel online">
|
||||||
<div class="icon">
|
<div class="icon">
|
||||||
<i class="ph-broadcast ph-bold ph-xl"></i>
|
<i class="ph-cell-tower ph-bold ph-xl"></i>
|
||||||
</div>
|
</div>
|
||||||
<div class="body">
|
<div class="body">
|
||||||
<div class="value">
|
<div class="value">
|
||||||
|
|
|
@ -117,7 +117,7 @@ definePageMetadata(
|
||||||
antenna
|
antenna
|
||||||
? {
|
? {
|
||||||
title: antenna.name,
|
title: antenna.name,
|
||||||
icon: "ph-flying-saucer ph-bold ph-lg",
|
icon: "ph-cell-tower ph-bold ph-lg",
|
||||||
}
|
}
|
||||||
: null,
|
: null,
|
||||||
),
|
),
|
||||||
|
|
|
@ -35,7 +35,7 @@ function onAntennaCreated() {
|
||||||
|
|
||||||
definePageMetadata({
|
definePageMetadata({
|
||||||
title: i18n.ts.manageAntennas,
|
title: i18n.ts.manageAntennas,
|
||||||
icon: "ph-flying-saucer ph-bold ph-lg",
|
icon: "ph-cell-tower ph-bold ph-lg",
|
||||||
});
|
});
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
|
|
|
@ -40,7 +40,7 @@ const headerTabs = $computed(() => []);
|
||||||
|
|
||||||
definePageMetadata({
|
definePageMetadata({
|
||||||
title: i18n.ts.manageAntennas,
|
title: i18n.ts.manageAntennas,
|
||||||
icon: "ph-flying-saucer ph-bold ph-lg",
|
icon: "ph-cell-tower ph-bold ph-lg",
|
||||||
});
|
});
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
|
|
|
@ -29,7 +29,7 @@
|
||||||
:to="`/timeline/antenna/${antenna.id}`"
|
:to="`/timeline/antenna/${antenna.id}`"
|
||||||
>
|
>
|
||||||
<i
|
<i
|
||||||
class="ph-flying-saucer ph-bold ph-lg"
|
class="ph-cell-tower ph-bold ph-lg"
|
||||||
></i
|
></i
|
||||||
><i
|
><i
|
||||||
:class="`${
|
:class="`${
|
||||||
|
@ -98,7 +98,7 @@ onDeactivated(() => {
|
||||||
|
|
||||||
definePageMetadata({
|
definePageMetadata({
|
||||||
title: i18n.ts.manageAntennas,
|
title: i18n.ts.manageAntennas,
|
||||||
icon: "ph-flying-saucer ph-bold ph-lg",
|
icon: "ph-cell-tower ph-bold ph-lg",
|
||||||
});
|
});
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
|
|
|
@ -210,7 +210,7 @@ const headerActions = $computed(() => [
|
||||||
handler: chooseList,
|
handler: chooseList,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
icon: "ph-flying-saucer ph-bold ph-lg",
|
icon: "ph-cell-tower ph-bold ph-lg",
|
||||||
title: i18n.ts.antennas,
|
title: i18n.ts.antennas,
|
||||||
text: i18n.ts.antennas,
|
text: i18n.ts.antennas,
|
||||||
iconOnly: true,
|
iconOnly: true,
|
||||||
|
|
|
@ -6,7 +6,7 @@
|
||||||
@parent-focus="($event) => emit('parent-focus', $event)"
|
@parent-focus="($event) => emit('parent-focus', $event)"
|
||||||
>
|
>
|
||||||
<template #header>
|
<template #header>
|
||||||
<i class="ph-flying-saucer ph-bold ph-lg"></i
|
<i class="ph-cell-tower ph-bold ph-lg"></i
|
||||||
><span style="margin-left: 8px">{{ column.name }}</span>
|
><span style="margin-left: 8px">{{ column.name }}</span>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
|
|
|
@ -139,7 +139,7 @@ const choose = async (ev) => {
|
||||||
]);
|
]);
|
||||||
const antennaItems = antennas.map((antenna) => ({
|
const antennaItems = antennas.map((antenna) => ({
|
||||||
text: antenna.name,
|
text: antenna.name,
|
||||||
icon: "ph-flying-saucer ph-bold ph-lg",
|
icon: "ph-cell-tower ph-bold ph-lg",
|
||||||
action: () => {
|
action: () => {
|
||||||
widgetProps.antenna = antenna;
|
widgetProps.antenna = antenna;
|
||||||
setSrc("antenna");
|
setSrc("antenna");
|
||||||
|
|
Loading…
Reference in a new issue