diff --git a/backend/public/css/app.css b/backend/public/css/app.css index 8f35b452..ede38d97 100644 --- a/backend/public/css/app.css +++ b/backend/public/css/app.css @@ -12929,7 +12929,7 @@ categories: [project] @font-face { font-family: "iconfont"; src: url(/fonts/iconfont.eot?9bd2f8e21fb68f3cb69f306c7a5a07d2); - src: url(/fonts/iconfont.eot?9bd2f8e21fb68f3cb69f306c7a5a07d2) format("eot"), url(/fonts/iconfont.woff?72290a51f520574be856b3621acc29a1) format("woff"), url(/fonts/iconfont.ttf?e240ce427caf7549e576c77b39a1d3f1) format("truetype"), url(/fonts/iconfont.svg?d812f238f7ec32f5cb5ebd322f320a02) format("svg"); + src: url(/fonts/iconfont.eot?9bd2f8e21fb68f3cb69f306c7a5a07d2) format("eot"), url(/fonts/iconfont.woff?72290a51f520574be856b3621acc29a1) format("woff"), url(/fonts/iconfont.ttf?e240ce427caf7549e576c77b39a1d3f1) format("truetype"), url(/fonts/iconfont.svg?9e48c54f8bbb472c1c286234fdd6636f) format("svg"); font-weight: normal; font-style: normal; } diff --git a/backend/public/js/app.js b/backend/public/js/app.js index 2e1189e3..a09be41c 100644 --- a/backend/public/js/app.js +++ b/backend/public/js/app.js @@ -45945,7 +45945,7 @@ var ChildAdd = function ChildAdd() { }; var copyLineText = function copyLineText() { - var lineText = "「KIKI」の招待が届いています。%0Aまずは以下より仮登録を行ってください。%0Ahttps%3A%2F%2Fkikikan.jp%2Fregister-temporary%2Fc-account%0A%0A▼公式サイトはこちら%0Ahttps%3A%2F%2Fkikikan.jp"; + var lineText = "「KIKI」の招待が届いています。%0Aまずは以下より仮登録を行ってください。%0Ahttps%3A%2F%2Fkikikan.xyz%2Fregister-temporary%2Fc-account%0A%0A▼公式サイトはこちら%0Ahttps%3A%2F%2Fkikikan.xyz"; clipboard_copy__WEBPACK_IMPORTED_MODULE_4___default()(lineText); setSuccess('招待用URLをLINEで追信しました。'); window.open('http://line.me/R/msg/text/?' + lineText); @@ -47583,7 +47583,7 @@ var MeetingAdd = function MeetingAdd(props) { } setChildrenList(arr); - setCheckRadio("all_send"); + if (list.length > 0) setCheckRadio("all_send");else setCheckRadio(''); } else { set400Error("失敗しました。"); } diff --git a/backend/resources/js/parent/child/add.jsx b/backend/resources/js/parent/child/add.jsx index 2e7789d4..fe8bbe82 100644 --- a/backend/resources/js/parent/child/add.jsx +++ b/backend/resources/js/parent/child/add.jsx @@ -43,7 +43,7 @@ const ChildAdd = () => { } const copyLineText = () => { - const lineText = "「KIKI」の招待が届いています。%0Aまずは以下より仮登録を行ってください。%0Ahttps%3A%2F%2Fkikikan.jp%2Fregister-temporary%2Fc-account%0A%0A▼公式サイトはこちら%0Ahttps%3A%2F%2Fkikikan.jp"; + const lineText = "「KIKI」の招待が届いています。%0Aまずは以下より仮登録を行ってください。%0Ahttps%3A%2F%2Fkikikan.xyz%2Fregister-temporary%2Fc-account%0A%0A▼公式サイトはこちら%0Ahttps%3A%2F%2Fkikikan.xyz"; copy(lineText); setSuccess('招待用URLをLINEで追信しました。'); window.open('http://line.me/R/msg/text/?'+lineText); diff --git a/backend/resources/js/parent/meeting/add.jsx b/backend/resources/js/parent/meeting/add.jsx index 1f3c5239..628227d3 100644 --- a/backend/resources/js/parent/meeting/add.jsx +++ b/backend/resources/js/parent/meeting/add.jsx @@ -68,7 +68,9 @@ const MeetingAdd = (props) => { for(var i in list) arr.push({...list[i], checked: false}) setChildrenList(arr); - setCheckRadio("all_send"); + if(list.length > 0) + setCheckRadio("all_send"); + else setCheckRadio(''); } else { set400Error("失敗しました。");