UI/Fix snowman that appears when namespaces have more than one period (#8910)
This commit is contained in:
parent
a6809fdbaf
commit
ddeec8ab0b
|
@ -14,7 +14,7 @@ export default Component.extend({
|
|||
|
||||
normalizedNamespace: computed('targetNamespace', function() {
|
||||
let ns = this.get('targetNamespace');
|
||||
return (ns || '').replace(/\.+/g, '/').replace('☃', '.');
|
||||
return (ns || '').replace(/\.+/g, '/').replace(/☃/g, '.');
|
||||
}),
|
||||
|
||||
namespaceDisplay: computed('normalizedNamespace', 'showLastSegment', function() {
|
||||
|
|
Loading…
Reference in New Issue