Skip to content

Commit 531e135

Browse files
committed
fix i18n
1 parent 5134fce commit 531e135

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src-tauri/src/commands/utils.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -416,7 +416,7 @@ pub fn get_checked_task_status_of_instance(
416416
.unwrap_or("")
417417
.to_string();
418418
let task_name_i18n = i18n
419-
.get(format!("task.{:?}.label", task_name))
419+
.get(format!("task.{}.label", task_name))
420420
.and_then(|v| v.as_str())
421421
.map(|s| s.to_string())
422422
.unwrap_or("".to_string());

0 commit comments

Comments
 (0)