diff --git a/Lux.UI/Components/Compo/WorkLoad/JobQueueDisplay.razor b/Lux.UI/Components/Compo/WorkLoad/JobQueueDisplay.razor index c34570d7..f4e35978 100644 --- a/Lux.UI/Components/Compo/WorkLoad/JobQueueDisplay.razor +++ b/Lux.UI/Components/Compo/WorkLoad/JobQueueDisplay.razor @@ -1,7 +1,13 @@ 
    -
  1. Job in Attesa
  2. +
  3. +
    Job in Attesa
    + @if (QueueWait.Count > 0) + { + + } +
  4. @if (QueueWait.Count == 0) {
  5. Nessun job in Attesa!
  6. @@ -13,17 +19,19 @@
  7. @item
  8. } } - @if (QueueWait.Count > 0) - { -
  9. - -
  10. - }
-
+
    -
  1. Job Eseguiti
  2. +
  3. +
    Job Eseguiti
    + @if (QueueRun.Count > 0) + { +
    + +
    + } +
  4. @if (QueueRun.Count == 0) {
  5. Nessun Job Eseguito!
  6. @@ -44,15 +52,9 @@ } } - @if (QueueRun.Count > 0) - { -
  7. - -
  8. - }