Plan stuff. Log stuff.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
333 B

  1. <script>
  2. import ActivityIcon from "./ActivityIcon.svelte";
  3. export let item = null
  4. export let id = ""
  5. </script>
  6. {#if item != null}
  7. <span>{item.name}</span>
  8. {:else if id != ""}
  9. <span class="unknown">(Deleted)</span>
  10. {:else}
  11. <span class="unknown">(None)</span>
  12. {/if}
  13. <style>
  14. span.unknown {
  15. color: #555;
  16. }
  17. </style>