Browse Source

feat: increase support for multiple time zones

pull/6839/head
zhongming4762 4 months ago
parent
commit
e3e5755903
  1. 6
      packages/effects/layouts/src/widgets/timezone/timezone-button.vue

6
packages/effects/layouts/src/widgets/timezone/timezone-button.vue

@ -22,12 +22,8 @@ interface Props {
timezone?: string;
}
interface Listener {
change: (timezone: string) => void;
}
const props = defineProps<Props>();
const emit = defineEmits<Listener>();
const emit = defineEmits<{ change: [string] }>();
const TimezoneIcon = createIconifyIcon('fluent-mdl2:world-clock');

Loading…
Cancel
Save