intellij-kubernetes icon indicating copy to clipboard operation
intellij-kubernetes copied to clipboard

inlay hint for base64 values should be on the right, they are currently on the left

Open adietish opened this issue 7 months ago • 0 comments

follows up #663 related to #852

Steps:

  1. 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: Image

adietish avatar Mar 25 '25 16:03 adietish