capitalize string
This commit is contained in:
parent
2a8b9dc92a
commit
dfd20a3a22
|
@ -1,6 +1,6 @@
|
||||||
<template>
|
<template>
|
||||||
<div class="hpaizdrt" ref="ticker" :style="bg">
|
<div class="hpaizdrt" ref="ticker" :style="bg">
|
||||||
<img v-tooltip="instance.softwareName" class="icon" :src="getInstanceIcon(instance)" aria-hidden="true" />
|
<img v-tooltip="capitalize(instance.softwareName)" class="icon" :src="getInstanceIcon(instance)" aria-hidden="true" />
|
||||||
<span class="name">{{ instance.name }}</span>
|
<span class="name">{{ instance.name }}</span>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
@ -33,6 +33,8 @@ const instance = props.instance ?? {
|
||||||
software: Instance.softwareName || "Calckey",
|
software: Instance.softwareName || "Calckey",
|
||||||
};
|
};
|
||||||
|
|
||||||
|
const capitalize = (s: string) => s && s[0].toUpperCase() + s.slice(1)
|
||||||
|
|
||||||
const computedStyle = getComputedStyle(document.documentElement);
|
const computedStyle = getComputedStyle(document.documentElement);
|
||||||
const themeColor =
|
const themeColor =
|
||||||
instance.themeColor ?? computedStyle.getPropertyValue("--bg");
|
instance.themeColor ?? computedStyle.getPropertyValue("--bg");
|
||||||
|
|
Loading…
Reference in New Issue