From 9d17c52cb2cfcb68e142f2c154fdebd2c4ec2497 Mon Sep 17 00:00:00 2001 From: KirylDrutsko Date: Fri, 2 May 2025 21:02:13 +0300 Subject: [PATCH] FIO-10060: Fixes an issue where some bootstrap icons are not displayed --- src/templates/bootstrap5/iconClass.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/templates/bootstrap5/iconClass.ts b/src/templates/bootstrap5/iconClass.ts index eae14565e..fb5bade35 100644 --- a/src/templates/bootstrap5/iconClass.ts +++ b/src/templates/bootstrap5/iconClass.ts @@ -164,5 +164,5 @@ export default (iconset, name, spinning) => { biName = 'arrow-clockwise'; break; } - return spinning ? 'spinner-border spinner-border-sm' : `${iconset} ${iconset}-${name}`; + return spinning ? 'spinner-border spinner-border-sm' : `${iconset} ${iconset}-${biName}`; };