diff --git a/.cargo/config.toml b/.cargo/config.toml index 17380505..bdeac036 100644 --- a/.cargo/config.toml +++ b/.cargo/config.toml @@ -1,9 +1,6 @@ -[build] -rustflags = ["--cfg", "tokio_unstable"] - # Windows has stack overflows when calling from Tauri, so we increase the default stack size used by the compiler [target.'cfg(windows)'] -rustflags = ["--cfg", "tokio_unstable", "-C", "link-args=/STACK:16777220"] +rustflags = ["-C", "link-args=/STACK:16777220"] [target.x86_64-pc-windows-msvc] linker = "rust-lld" diff --git a/.github/instructions/i18n-convert.instructions.md b/.github/instructions/i18n-convert.instructions.md index 44a98ce4..732e391e 100644 --- a/.github/instructions/i18n-convert.instructions.md +++ b/.github/instructions/i18n-convert.instructions.md @@ -9,6 +9,7 @@ Please follow these rules precisely: 1. Identify translatable strings - Scan the - - - diff --git a/apps/frontend/src/components/ui/EnvironmentIndicator.vue b/apps/frontend/src/components/ui/EnvironmentIndicator.vue index 0725737e..024e9493 100644 --- a/apps/frontend/src/components/ui/EnvironmentIndicator.vue +++ b/apps/frontend/src/components/ui/EnvironmentIndicator.vue @@ -90,7 +90,7 @@ defineProps({ }, }) -const tags = useTags() +const tags = useGeneratedState() diff --git a/apps/frontend/src/components/ui/NavStackItem.vue b/apps/frontend/src/components/ui/NavStackItem.vue deleted file mode 100644 index aff9b434..00000000 --- a/apps/frontend/src/components/ui/NavStackItem.vue +++ /dev/null @@ -1,64 +0,0 @@ - - - - - diff --git a/apps/frontend/src/components/ui/NotificationItem.vue b/apps/frontend/src/components/ui/NotificationItem.vue index 662c98a7..35a8e5c0 100644 --- a/apps/frontend/src/components/ui/NotificationItem.vue +++ b/apps/frontend/src/components/ui/NotificationItem.vue @@ -376,7 +376,7 @@ const props = defineProps({ }) const flags = useFeatureFlags() -const tags = useTags() +const tags = useGeneratedState() const type = computed(() => !props.notification.body || props.notification.body.type === 'legacy_markdown' diff --git a/apps/frontend/src/components/ui/OrganizationProjectTransferModal.vue b/apps/frontend/src/components/ui/OrganizationProjectTransferModal.vue index e04ea82e..dadf0577 100644 --- a/apps/frontend/src/components/ui/OrganizationProjectTransferModal.vue +++ b/apps/frontend/src/components/ui/OrganizationProjectTransferModal.vue @@ -152,7 +152,7 @@ const onSubmitHandler = () => { border-radius: var(--radius-md); overflow: hidden; margin-top: var(--gap-md); - border: 1px solid var(--color-button-bg); + border: 1px solid var(--color-divider); background-color: var(--color-raised-bg); .table-row { diff --git a/apps/frontend/src/components/ui/ProjectCard.vue b/apps/frontend/src/components/ui/ProjectCard.vue index 6e429f56..a91868fc 100644 --- a/apps/frontend/src/components/ui/ProjectCard.vue +++ b/apps/frontend/src/components/ui/ProjectCard.vue @@ -212,7 +212,7 @@ export default { }, }, setup() { - const tags = useTags() + const tags = useGeneratedState() const formatRelativeTime = useRelativeTime() return { tags, formatRelativeTime } diff --git a/apps/frontend/src/components/ui/admin/BatchCreditModal.vue b/apps/frontend/src/components/ui/admin/BatchCreditModal.vue new file mode 100644 index 00000000..8e6dbcbf --- /dev/null +++ b/apps/frontend/src/components/ui/admin/BatchCreditModal.vue @@ -0,0 +1,264 @@ +