Skip to content

Commit

Permalink
update logo
Browse files Browse the repository at this point in the history
  • Loading branch information
jkppr committed Oct 24, 2023
1 parent 7b463d0 commit 0074652
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 7 deletions.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed timesketch/frontend-ng/public/unfurl-logo-dm.png
Binary file not shown.
Binary file modified timesketch/frontend-ng/public/unfurl-logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
10 changes: 3 additions & 7 deletions timesketch/frontend-ng/src/components/Explore/UnfurlDialog.vue
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,7 @@ limitations under the License.
<template>
<v-card>
<v-card-title>
<v-img :src="getUnfurlLogo" max-height="32px" max-width="32px" contain class="mb-2"></v-img>
<span style="font-size: xx-large">nfurl</span>
<v-img :src="getUnfurlLogo" max-height="32" contain class="mb-2"></v-img>
</v-card-title>
<v-card-subtitle class="pt-1">
<span><b>Input:</b> {{ url }}</span>
Expand Down Expand Up @@ -159,10 +158,9 @@ export default {
computed: {
getUnfurlLogo() {
if (this.$vuetify.theme.dark) {
return '/unfurl-logo-dm.png'
return '/unfurl-logo-dark.png'
} else {
return '/unfurl-logo.png'
}
return '/unfurl-logo.png' }
},
},
methods: {
Expand Down Expand Up @@ -245,8 +243,6 @@ export default {
this.cy.style(this.config.style)
this.cy.add(elements)
this.cy.layout(this.config.layout).run()

// Why can't I use this.resizeCanvas() here and need a delay?
this.resizeCanvasWithDelay()
},
nodeSelection: function (event) {
Expand Down

0 comments on commit 0074652

Please sign in to comment.