Skip to content

Commit

Permalink
bump v0.10.3
Browse files Browse the repository at this point in the history
  • Loading branch information
Chakravarthy7102 committed Feb 14, 2024
1 parent 8b0a3be commit 3505385
Show file tree
Hide file tree
Showing 10 changed files with 23 additions and 19 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [unreleased]

## [0.10.3] - 2024-01-26

- Fixes scroll issues on diffrent browsers.

## [0.10.2] - 2024-01-26

- Fix typo on user roles section on user details page.
Expand Down
10 changes: 5 additions & 5 deletions build/asset-manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@
"static/media/ST_icon_light_theme.svg": "/static/media/ST_icon_light_theme.svg",
"static/media/ST_full_logo_dark_theme.svg": "/static/media/ST_full_logo_dark_theme.svg",
"static/media/secuity-key.svg": "/static/media/secuity-key.svg",
"static/media/refresh.svg": "/static/media/refresh.svg",
"static/media/ST_full_logo_light_theme.svg": "/static/media/ST_full_logo_light_theme.svg",
"static/media/refresh.svg": "/static/media/refresh.svg",
"static/media/ST_icon_dark_theme.svg": "/static/media/ST_icon_dark_theme.svg",
"static/media/auth-method.svg": "/static/media/auth-method.svg",
"static/media/logo.svg": "/static/media/logo.svg",
Expand All @@ -20,19 +20,19 @@
"static/media/email.svg": "/static/media/email.svg",
"static/media/user-managment.svg": "/static/media/user-managment.svg",
"static/media/lock.svg": "/static/media/lock.svg",
"static/media/provider-apple.svg": "/static/media/provider-apple.svg",
"static/media/checkmark-green.svg": "/static/media/checkmark-green.svg",
"static/media/plus.svg": "/static/media/plus.svg",
"static/media/green-check.svg": "/static/media/green-check.svg",
"static/media/clear.svg": "/static/media/clear.svg",
"static/media/provider-apple.svg": "/static/media/provider-apple.svg",
"static/media/search.png": "/static/media/search.png",
"static/media/phone-no.svg": "/static/media/phone-no.svg",
"static/media/provider-google.svg": "/static/media/provider-google.svg",
"static/media/phone-no.svg": "/static/media/phone-no.svg",
"static/media/no-users-graphic.svg": "/static/media/no-users-graphic.svg",
"static/media/unlink-login-method.png": "/static/media/unlink-login-method.png",
"static/media/eye-stroke.svg": "/static/media/eye-stroke.svg",
"static/media/people-restricted.svg": "/static/media/people-restricted.svg",
"static/media/mail-opened.svg": "/static/media/mail-opened.svg",
"static/media/people-restricted.svg": "/static/media/people-restricted.svg",
"static/media/form-field-error-icon.svg": "/static/media/form-field-error-icon.svg",
"static/media/provider-github.svg": "/static/media/provider-github.svg",
"static/media/edit-login-method.png": "/static/media/edit-login-method.png",
Expand Down Expand Up @@ -68,8 +68,8 @@
"static/media/Union-yellow.png": "/static/media/Union-yellow.png",
"static/media/Union.png": "/static/media/Union.png",
"static/media/checkmark-yellow.svg": "/static/media/checkmark-yellow.svg",
"static/media/spinner.svg": "/static/media/spinner.svg",
"static/media/cross.svg": "/static/media/cross.svg",
"static/media/spinner.svg": "/static/media/spinner.svg",
"static/media/triangle-down.svg": "/static/media/triangle-down.svg",
"main.css.map": "/static/css/main.css.map",
"bundle.js.map": "/static/js/bundle.js.map",
Expand Down
4 changes: 2 additions & 2 deletions build/static/css/main.css

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion build/static/css/main.css.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion build/static/js/bundle.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion build/static/js/bundle.js.map

Large diffs are not rendered by default.

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": "dashboard",
"version": "0.10.2",
"version": "0.10.3",
"private": true,
"dependencies": {
"@babel/core": "^7.16.0",
Expand Down
10 changes: 5 additions & 5 deletions src/ui/styles/index.css
Original file line number Diff line number Diff line change
Expand Up @@ -63,15 +63,15 @@ button:disabled {

/* Styling the scrollbar in Chrome and Safari */
::-webkit-scrollbar {
width: 6px;
height: 6px;
width: 6px;
height: 6px;
}

::-webkit-scrollbar-thumb {
background-color: #8d8d8d; /* Set thumb color for Chrome and Safari */
border-radius: 10px;
background-color: #8d8d8d; /* Set thumb color for Chrome and Safari */
border-radius: 10px;
}

::-webkit-scrollbar-track {
background-color: transparent; /* Set track color for Chrome and Safari */
background-color: transparent; /* Set track color for Chrome and Safari */
}
2 changes: 1 addition & 1 deletion src/version.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@
* under the License.
*/

export const package_version = "0.10.2";
export const package_version = "0.10.3";

0 comments on commit 3505385

Please sign in to comment.