Commit 079d3ea2 authored by 권병윤's avatar 권병윤
Browse files

병윤 최종

parent 558e3ef4
...@@ -33,9 +33,9 @@ const ChannelSettingChange = (props) => { ...@@ -33,9 +33,9 @@ const ChannelSettingChange = (props) => {
window.alert("이미 존재하는 채널 입니다. 다른 이름을 입력해 주십시오."); window.alert("이미 존재하는 채널 입니다. 다른 이름을 입력해 주십시오.");
} else { } else {
Channel.number = props.channel.length; Channel.number = props.channel.length;
alert("채널이 성공적으로 생성되었습니다.");
window.location.reload(); window.location.reload();
const data = await roomApi.makeChannel(Channel); const data = await roomApi.makeChannel(Channel);
window.alert("채널이 성공적으로 생성되었습니다.");
} }
} }
...@@ -49,9 +49,9 @@ const ChannelSettingChange = (props) => { ...@@ -49,9 +49,9 @@ const ChannelSettingChange = (props) => {
} }
if (count === 1){ if (count === 1){
alert("채널이 성공적으로 삭제되었습니다.");
window.location.reload(); window.location.reload();
const data = await roomApi.channelDelete(Channel); const data = await roomApi.channelDelete(Channel);
window.alert("채널이 성공적으로 삭제되었습니다.");
} }
else { else {
window.alert( window.alert(
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment