diff --git a/front/package.json b/front/package.json index 341c4fcc..569eeb03 100644 --- a/front/package.json +++ b/front/package.json @@ -1,6 +1,6 @@ { "name": "tagether", - "version": "1.7.0", + "version": "1.7.1", "description": "", "main": "index.js", "scripts": { diff --git a/front/src/components/pages/create/create.tsx b/front/src/components/pages/create/create.tsx index 3d032e8e..0d775959 100644 --- a/front/src/components/pages/create/create.tsx +++ b/front/src/components/pages/create/create.tsx @@ -142,7 +142,6 @@ export default function create(props: Props): React.ReactElement { if (check.search('"') !== -1) irregular_symbol_exam.add(i); // `\`が1つ以上連続している部分文字列を切り出して、\の数が奇数だったら駄目 check.match(/\\+/g)?.forEach(part => { - // partに `\` は1つ以上あるはず、lengthがundefinedになる状況は意味不明なので奇数を入れてエラーに if (part.length % 2 === 1) { irregular_symbol_exam.add(i); } diff --git a/front/src/components/pages/top/top.tsx b/front/src/components/pages/top/top.tsx index 0650c192..924fc371 100644 --- a/front/src/components/pages/top/top.tsx +++ b/front/src/components/pages/top/top.tsx @@ -39,6 +39,8 @@ export default function index(): React.ReactElement {
  • Ctrl + Shift + (Hもしくは左矢印キー):前の問題
  • +

    カテゴリ編集ページでは、Ctrl+Sで編集結果の適用ができます。

    +

    問題解答ページのみ、以下のショートカットキーが使えます。

    -

    TAGether v1.7.0

    +

    TAGether v1.7.1

    ); } @@ -61,6 +63,21 @@ export default function index(): React.ReactElement { function Releases(): React.ReactElement { return ( <> +

    v1.7.1

    + +

    v1.7.0

    - -

    v1.5.0

    -
    -

    - 長いのでまとめると、 -

    - という感じです -

    - -
    ); }