ソースを参照

default enable artifact

lloydzhou 1 年間 前
コミット
7455978ee5
1 ファイル変更1 行追加1 行削除
  1. 1 1
      app/components/mask.tsx

+ 1 - 1
app/components/mask.tsx

@@ -174,7 +174,7 @@ export function MaskConfig(props: {
           <input
             aria-label={Locale.Mask.Config.Artifacts.Title}
             type="checkbox"
-            checked={props.mask.enableArtifacts}
+            checked={props.mask.enableArtifacts !== false}
             onChange={(e) => {
               props.updateMask((mask) => {
                 mask.enableArtifacts = e.currentTarget.checked;