feat: rename Source to Image

This commit is contained in:
karishmas6
2024-08-21 23:12:11 +05:30
parent 489096095f
commit 61ba50d0e0

View File

@@ -35,7 +35,7 @@ const getAttributeOptions = (tagName: string, elementInfo: ElementInfo | null):
options.push({ label: `Alt Text: ${elementInfo.innerText}`, value: 'alt' });
}
if (elementInfo.imageUrl) {
options.push({ label: `Source URL: ${elementInfo.imageUrl}`, value: 'src' });
options.push({ label: `Image URL: ${elementInfo.imageUrl}`, value: 'src' });
}
return options;
default: