fix(ui): F8-08 unified number format — mono, fixed 3-decimal, no separators #65

Merged
developer merged 2 commits from feature/issue-51-number-format into development 2026-05-27 10:14:05 +00:00
2 changed files with 2 additions and 2 deletions
Showing only changes of commit ed4e2f58a1 - Show all commits
+1 -1
View File
@@ -319,7 +319,7 @@ test("create / list / delete science via the table + designer", async ({
await expect(page.getByTestId("sciences-table")).toBeVisible();
const row = page.getByTestId("sciences-row");
await expect(row).toHaveAttribute("data-name", "FirstStep");
await expect(page.getByTestId("sciences-cell-drive")).toHaveText("25");
await expect(page.getByTestId("sciences-cell-drive")).toHaveText("25.0");
// The auto-sync round-trip lands as applied.
await page.getByTestId("sidebar-tab-order").click();
+1 -1
View File
@@ -293,7 +293,7 @@ test("create / list / delete ship class via the table + calculator", async ({
await expect(page.getByTestId("ship-classes-table")).toBeVisible();
const row = page.getByTestId("ship-classes-row");
await expect(row).toHaveAttribute("data-name", "Drone");
await expect(page.getByTestId("ship-classes-cell-drive")).toHaveText("1");
await expect(page.getByTestId("ship-classes-cell-drive")).toHaveText("1.000");
// The auto-sync round-trip lands as applied.
await page.getByTestId("sidebar-tab-order").click();