From 8d2530d4c859963c9f36d6b31534e1c992d269f1 Mon Sep 17 00:00:00 2001 From: Andrew Kingston Date: Fri, 20 Oct 2023 09:19:05 +0100 Subject: [PATCH] Swap let for const --- packages/bbui/src/Table/Table.svelte | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/bbui/src/Table/Table.svelte b/packages/bbui/src/Table/Table.svelte index 885dd75671..2610d6106c 100644 --- a/packages/bbui/src/Table/Table.svelte +++ b/packages/bbui/src/Table/Table.svelte @@ -109,7 +109,7 @@ // Delete numeric only widths as these are grid widths and should be // ignored - let width = fixedSchema[fieldName].width + const width = fixedSchema[fieldName].width if (width != null && `${width}`.trim().match(/^[0-9]+$/)) { delete fixedSchema[fieldName].width }