mirror of
https://github.com/MrUnknownDE/VRCX.git
synced 2026-05-04 05:46:07 +02:00
Fix chart world names
This commit is contained in:
@@ -420,7 +420,11 @@
|
|||||||
|
|
||||||
const timeString = timeToText(param.data, true);
|
const timeString = timeToText(param.data, true);
|
||||||
const color = param.color;
|
const color = param.color;
|
||||||
const name = param.name;
|
let name = param.name;
|
||||||
|
// jank: remove axis label rich text formatting
|
||||||
|
name = name.endsWith('}') ? name.slice(0, -1) : name;
|
||||||
|
name = name.replaceAll('{filtered|', '').replaceAll('{normal|', '');
|
||||||
|
|
||||||
const location = parseLocation(instanceData.location);
|
const location = parseLocation(instanceData.location);
|
||||||
|
|
||||||
return `
|
return `
|
||||||
|
|||||||
Reference in New Issue
Block a user