Skip to content

Commit

Permalink
fix(proxy): replace icon
Browse files Browse the repository at this point in the history
  • Loading branch information
CyanSalt committed Sep 15, 2023
1 parent 0c14205 commit c3b5f90
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion addons/proxy/src/renderer/ProxyAnchor.vue
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ function configure() {
@contextmenu="configure"
>
<VisualIcon v-if="status === undefined" name="lucide-loader" />
<VisualIcon v-else name="lucide-navigation" />
<VisualIcon v-else name="lucide-router" />
<span v-if="status" class="server-port">{{ port }}</span>
</div>
</template>
Expand Down
2 changes: 1 addition & 1 deletion addons/proxy/src/renderer/ProxyPane.vue
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ function update() {
</span>
</span>
<span v-else class="link shortcut" @click="toggleProxyServer">
<VisualIcon name="lucide-navigation" class="shortcut-icon" />
<VisualIcon name="lucide-router" class="shortcut-icon" />
<span v-i18n>Click this icon to start#!proxy.10</span>
</span>
</div>
Expand Down
2 changes: 1 addition & 1 deletion addons/proxy/src/renderer/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ export default () => {
title: 'Proxy#!proxy.1',
component: ProxyPane,
icon: {
name: 'lucide-navigation',
name: 'lucide-router',
},
})

Expand Down

0 comments on commit c3b5f90

Please sign in to comment.