Skip to content

Commit

Permalink
Fix image import
Browse files Browse the repository at this point in the history
  • Loading branch information
liamg committed Aug 7, 2023
1 parent f9fb525 commit 7c56182
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion frontend/src/components/SettingsEditor.vue
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
import { InformationCircleIcon, PaintBrushIcon, ServerStackIcon, ShieldCheckIcon } from '@heroicons/vue/20/solid'
import { Switch, SwitchDescription, SwitchGroup, SwitchLabel } from '@headlessui/vue'
import { PropType, reactive, ref } from 'vue'
import cowbell from '../assets/images/cowbell.png'
import { BrowserOpenURL, EventsEmit } from '../../wailsjs/runtime' // eslint-disable-line import/no-unresolved
import Settings from '../lib/Settings'
Expand Down Expand Up @@ -188,7 +189,7 @@ function setProxyPort(event: Event) {

<div>

<img src="src/assets/images/cowbell.png" class="w-40 h-40 rounded-full mx-auto mt-4"/>
<img :src="cowbell" class="w-40 h-40 rounded-full mx-auto mt-4"/>
</div>

<div class="mt-6 flex flex-col lg:flex-row">
Expand Down

0 comments on commit 7c56182

Please sign in to comment.