Skip to content

Commit

Permalink
Merge pull request #17792 from dannon/fix-viz-activity-images
Browse files Browse the repository at this point in the history
[24.0] Fix visualization activity plugin list images
  • Loading branch information
martenson authored Mar 19, 2024
2 parents 7850c04 + 7047558 commit 6abf2df
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion client/src/components/Visualizations/PluginList.vue
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
v-if="plugin.logo"
alt="ui thumbnails"
class="plugin-list-image"
:src="plugin.logo" />
:src="absPath(plugin.logo)" />
<div v-else class="plugin-list-icon fa fa-eye" />
</td>
<td>
Expand Down Expand Up @@ -64,6 +64,7 @@ import axios from "axios";
import DelayedInput from "components/Common/DelayedInput";
import { getAppRoot } from "onload/loadConfig";
import _l from "utils/localization";
import { absPath } from "utils/redirect";
export default {
components: {
Expand Down Expand Up @@ -106,6 +107,7 @@ export default {
});
},
methods: {
absPath,
onSearch(newValue) {
this.search = newValue;
},
Expand Down

0 comments on commit 6abf2df

Please sign in to comment.