mirror of
https://github.com/billsonnn/nitro-react.git
synced 2024-11-30 00:50:50 +01:00
Merge branch 'fix-text-invalid-floor' into 'dev'
Fix issue #211 - Text invalid floor See merge request nitro/nitro-react!97
This commit is contained in:
commit
6b7d97329b
@ -84,6 +84,8 @@ const useNotificationState = () =>
|
|||||||
|
|
||||||
if(configuration) for(const key in configuration) options.set(key, configuration[key]);
|
if(configuration) for(const key in configuration) options.set(key, configuration[key]);
|
||||||
|
|
||||||
|
if (type === 'floorplan_editor.error') options.set('message', options.get('message').replace(/[^a-zA-Z._ ]/g, ''));
|
||||||
|
|
||||||
const title = getNotificationPart(options, type, 'title', true);
|
const title = getNotificationPart(options, type, 'title', true);
|
||||||
const message = getNotificationPart(options, type, 'message', true).replace(/\\r/g, '\r');
|
const message = getNotificationPart(options, type, 'message', true).replace(/\\r/g, '\r');
|
||||||
const linkTitle = getNotificationPart(options, type, 'linkTitle', false);
|
const linkTitle = getNotificationPart(options, type, 'linkTitle', false);
|
||||||
@ -96,7 +98,7 @@ const useNotificationState = () =>
|
|||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
simpleAlert(message, type, linkUrl, linkTitle, title, image);
|
simpleAlert(LocalizeText(message), type, linkUrl, linkTitle, title, image);
|
||||||
}
|
}
|
||||||
|
|
||||||
if(options.get('sound')) PlaySound(options.get('sound'));
|
if(options.get('sound')) PlaySound(options.get('sound'));
|
||||||
|
Loading…
Reference in New Issue
Block a user