client save editor buttons
1 files changed, 2 insertions(+), 2 deletions(-) M starkingdoms-client/src/pages/ShipEditor.svelte
M starkingdoms-client/src/pages/ShipEditor.svelte => starkingdoms-client/src/pages/ShipEditor.svelte +2 -2
@@ 246,7 246,7 @@ <Popup title="Parts" id="parts" draggable minimizable style="width: 15em;"> {#each part_counts.entries() as [type, counts]} {#if type !== PartType.Hearty} <div> <Button style="margin-top: 5px; width: 100%;"> <img style="vertical-align: middle;" src={part_texture_url(type, true)} @@ 254,7 254,7 @@ height="24" alt={type} /> <span>{type} - {counts.used} used of {counts.available}</span> </div> </Button> {/if} {/each} </Popup>