Tweak code note

This commit is contained in:
Sam Becker 2025-10-15 20:03:24 -05:00
parent 0218c07870
commit 71c732e3ff

View File

@ -99,8 +99,8 @@ export default function AdminAlbumForm({
type="textarea" type="textarea"
value={JSON.stringify(albumForm.location)} value={JSON.stringify(albumForm.location)}
isModified={!deepEqual(albumForm.location, album.location)} isModified={!deepEqual(albumForm.location, album.location)}
// Make field editable if location services are disabled // Make field editable when location services are disabled
// to allow for data to be manually erased // to allow data to be manually cleared
readOnly={isLoadingPlace || hasLocationServices} readOnly={isLoadingPlace || hasLocationServices}
/> />
</div>} </div>}