Skip to content

Add Cyrillic fonts support #13 #22

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
Oct 1, 2019
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
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
- Fix notifications hours display
- Change notifications journal order to by time descending
- Update ANT.D version
- Added favicon (working in Chrome and Firefox)
- Add favicon (working in Chrome and Firefox)
- Add Cyrillic

## [6.0.2]

Expand Down
25 changes: 21 additions & 4 deletions src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -76,8 +76,26 @@ core.register(
},
{
label: 'Test custom icon',
path: '/test/icon',
path: '/test/icon/1'
},
{
label: 'Съешь же',
path: '/test/icon/2',
icon: <img src={testSvg} style={{ width: 14, height: 14 }} />
},
{
label: <b>ещё этих</b>,
path: '/test/icon/3',
icon: 'hdd'
},
{
label: <i>мягких французских</i>,
path: '/test/icon/4',
icon: 'hdd'
},
{
label: <b><i>булок, да выпей чаю</i></b>,
path: '/test/icon/5'
}
],
Test,
Expand All @@ -92,15 +110,14 @@ core.notify({
})
core.notify({
type: 'error',
title: 'hello',
title: 'Привет',
message: `Create the replicaset "Name of replicaset #2"
to with server "pim.dmitrov_ storages_ msk_eapi_trn57_5" executed successfully`
})
core.notify({
type: 'default',
title: 'hello',
message: `Create the replicaset "Name of replicaset #2"
to with server "pim.dmitrov_ storages_ msk_eapi_trn57_5" executed successfully`
message: `Тут что-то интересное произошло`
})
core.notify({
type: 'success',
Expand Down
Loading