Fix missing fluent var (#10663)

This commit is contained in:
Visne
2022-08-18 04:30:49 +02:00
committed by GitHub
parent 0d2ebb80d9
commit de3e7f21ef
2 changed files with 2 additions and 2 deletions

View File

@@ -133,7 +133,7 @@ namespace Content.Client.Storage.UI
new Label
{
Align = Label.AlignMode.Right,
Text = item?.Size.ToString() ?? Loc.GetString("no-item-size")
Text = item?.Size.ToString() ?? Loc.GetString("comp-storage-no-item-size"),
}
}
});