Skip to content

Commit a7f5553

Browse files
authored
fix slashes for concurrency ui (#27649)
## Summary & Motivation fix slashes for concurrency ui ## How I Tested These Changes Rendered key page using slashes ## Changelog - Fixed issue where concurrency UI was broken for keys with slashes
1 parent b261ef6 commit a7f5553

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

js_modules/dagster-ui/packages/ui-core/src/instance/InstanceConcurrency.tsx

+2-1
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,8 @@ export const InstanceConcurrencyPageContent = React.memo(() => {
4848
return <InstanceConcurrencyIndexContent />;
4949
}
5050

51-
return <InstanceConcurrencyKeyInfo concurrencyKey={concurrencyKey} />;
51+
const decodedKey = decodeURIComponent(concurrencyKey);
52+
return <InstanceConcurrencyKeyInfo concurrencyKey={decodedKey} />;
5253
});
5354

5455
export const InstanceConcurrencyIndexContent = React.memo(() => {

0 commit comments

Comments
 (0)