Skip to content

Release v1.13.1 and fix search #2152

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
May 9, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion build/font/css.hbs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*!
* Bootstrap Icons v1.13.0 (https://icons.getbootstrap.com/)
* Bootstrap Icons v1.13.1 (https://icons.getbootstrap.com/)
* Copyright 2019-2024 The Bootstrap Authors
* Licensed under MIT (https://github.com/twbs/icons/blob/main/LICENSE)
*/
Expand Down
2 changes: 1 addition & 1 deletion build/font/scss.hbs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*!
* Bootstrap Icons v1.13.0 (https://icons.getbootstrap.com/)
* Bootstrap Icons v1.13.1 (https://icons.getbootstrap.com/)
* Copyright 2019-2024 The Bootstrap Authors
* Licensed under MIT (https://github.com/twbs/icons/blob/main/LICENSE)
*/
Expand Down
6 changes: 3 additions & 3 deletions docs/assets/js/search.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@ import Fuse from 'fuse.js'
const iconElementList = Array.from(iconListContainer.children)

const iconDataList = iconElementList.map(element => ({
name: element.dataset.name,
categories: element.dataset.categories.split(' '),
tags: element.dataset.tags.split(' ')
name: element.dataset.name || '',
categories: element.dataset.categories ? element.dataset.categories.split(' ') : [],
tags: element.dataset.tags ? element.dataset.tags.split(' ') : []
}))

const fuse = new Fuse(iconDataList, {
Expand Down
2 changes: 1 addition & 1 deletion font/bootstrap-icons.css
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*!
* Bootstrap Icons v1.13.0 (https://icons.getbootstrap.com/)
* Bootstrap Icons v1.13.1 (https://icons.getbootstrap.com/)
* Copyright 2019-2024 The Bootstrap Authors
* Licensed under MIT (https://github.com/twbs/icons/blob/main/LICENSE)
*/
Expand Down
2 changes: 1 addition & 1 deletion font/bootstrap-icons.min.css

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion font/bootstrap-icons.scss
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*!
* Bootstrap Icons v1.13.0 (https://icons.getbootstrap.com/)
* Bootstrap Icons v1.13.1 (https://icons.getbootstrap.com/)
* Copyright 2019-2024 The Bootstrap Authors
* Licensed under MIT (https://github.com/twbs/icons/blob/main/LICENSE)
*/
Expand Down
2 changes: 1 addition & 1 deletion hugo.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ params:
description: "Official open source SVG icon library for Bootstrap"
social_image_path: /assets/img/bootstrap-icons-social.png

version: "1.13.0"
version: "1.13.1"
docs_version: "5.3"

main: "https://getbootstrap.com"
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "bootstrap-icons",
"version": "1.13.0",
"version": "1.13.1",
"description": "Official open source SVG icon library for Bootstrap",
"author": "mdo",
"license": "MIT",
Expand Down