mirror of
https://github.com/amir20/dozzle.git
synced 2025-12-24 06:28:42 +01:00
* chore: updates modules * feat: adds support for exponential moving average * feat: add expoentital moving avg * adds index page * cleans up table * fixes typecheck * adds bar chart * updates dashboard to orgua table * wip * cleans up ui * remove screenshot tests for playwright * adds more tests * fixes icon * fixes default sort * removes unused var * adds vscode settings
12 lines
202 B
Vue
12 lines
202 B
Vue
<template>
|
|
<div>
|
|
<mdi:arrow-up v-if="icon[1] == 'arrow-up'" />
|
|
</div>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
const { icon } = defineProps<{ icon: string[] }>();
|
|
</script>
|
|
|
|
<style scoped></style>
|