feat: 本次提交更新内容如下
格式更新一下
This commit is contained in:
@@ -43,7 +43,7 @@ const DeviceSelection: React.FC<DeviceSelectionProps> = ({
|
||||
// 删除已选设备
|
||||
const handleRemoveDevice = (id: string) => {
|
||||
if (readonly) return;
|
||||
onSelect(selectedDevices.filter((d) => d !== id));
|
||||
onSelect(selectedDevices.filter(d => d !== id));
|
||||
};
|
||||
|
||||
return (
|
||||
@@ -79,7 +79,7 @@ const DeviceSelection: React.FC<DeviceSelectionProps> = ({
|
||||
background: "#fff",
|
||||
}}
|
||||
>
|
||||
{selectedDevices.map((deviceId) => (
|
||||
{selectedDevices.map(deviceId => (
|
||||
<div
|
||||
key={deviceId}
|
||||
className={style.selectedListRow}
|
||||
|
||||
Reference in New Issue
Block a user