Commit 0c286967 authored by Lennard Sprong's avatar Lennard Sprong Committed by Tomas Vik (OOO back on 2026-08-31)
Browse files

fix: running job SVG is not showing

parent 4d75f55b
Loading
Loading
Loading
Loading
+2 −6
Original line number Diff line number Diff line
@@ -213,16 +213,12 @@ export class AnsiDecorationProvider {
      decorationType = vscode.window.createTextEditorDecorationType({
        light: {
          after: {
            contentIconPath: this.#context?.asAbsolutePath(
              'src/assets/images/light/running-job.svg',
            ),
            contentIconPath: this.#context?.asAbsolutePath('assets/images/light/running-job.svg'),
          },
        },
        dark: {
          after: {
            contentIconPath: this.#context?.asAbsolutePath(
              'src/assets/images/dark/running-job.svg',
            ),
            contentIconPath: this.#context?.asAbsolutePath('assets/images/dark/running-job.svg'),
          },
        },
      });