From 5f00f2beb0f111fe8c5f52a6bd629ea48de128f8 Mon Sep 17 00:00:00 2001 From: Cohee <18619528+Cohee1207@users.noreply.github.com> Date: Thu, 27 Mar 2025 22:28:14 +0200 Subject: [PATCH] Add quotes to item title being moved --- public/scripts/world-info.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/scripts/world-info.js b/public/scripts/world-info.js index dbd2f230f..00c12034e 100644 --- a/public/scripts/world-info.js +++ b/public/scripts/world-info.js @@ -3185,7 +3185,7 @@ export async function getWorldEntry(name, data, entry) { // Create wrapper div const wrapper = document.createElement('div'); - wrapper.textContent = t`Move ${sourceName} to:`; + wrapper.textContent = t`Move "${sourceName}" to:`; // Create container and append elements const container = document.createElement('div');