Open
Description
Describe the bug and steps to reproduce
- The
fullname
field returned from tooling query results should be decoded - Also in deploy metadata table, the results should be decoded
- Also in view metadata modal where we show the tree of metadata items in the left sidebar
For data tables, we can probably add an additional type to ColumnType
(e.x. 'encoded-text') or something.
Then add a simple formatter (this is an example, probably best to make a function that makes sure we have a string before calling this)
column.formatter = ({ column, row }) => decodeURIComponent(row[column.key] || '');