Don't put channel name in EPG name when no epg is assigned.

This commit is contained in:
SergeantPanda 2025-09-14 13:53:02 -05:00
parent 661d5f9d43
commit f84a347514

View file

@ -718,8 +718,6 @@ const ChannelForm = ({ channel = null, isOpen, onClose }) => {
return `${epgSource.name} - ${tvgLabel}`;
} else if (tvgLabel) {
return tvgLabel;
} else if (formik.values.name) {
return formik.values.name;
} else {
return 'Dummy';
}