intellij-kubernetes
intellij-kubernetes copied to clipboard
inlay hint for base64 values should be on the right, they are currently on the left
follows up #663 related to #852
Steps:
- EXEC: open a new editor with the following content:
{
"apiVersion": "v1",
"kind": "Secret",
"metadata": {
"annotations": {},
"name": "mytest34e"
},
"data": {
"a": "dGVzdA==",
"b": "dGVzdA=="
}
}
Result: To the left of "a" and "b" you get inlay hints that display the unencoded values of these base64 encoded values
Expected result: The hints should be displayed to the right of the encoded values.
For multiline values, they should be displayed on top though (see https://github.com/redhat-developer/intellij-kubernetes/pull/714#issuecomment-1952493353)
For very lengthy values, displaying a shortened value to the left seems ok: