Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix instructions page crash due to outdated searchBy key #511

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ Fift 是一种基于栈的编程语言,旨在管理 TON 智能合约。Fift

<SearchField
data={opcodes}
searchBy="doc_opcode"
searchBy="doc_fift"
placeholder="搜索操作码"
showKeys={[
{ key: 'doc_opcode', name: '操作码', isGrouped: true },
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ TVM 指令的每个章节都包括一个内置的搜索组件,用于查找特

<SearchField
data={opcodes}
searchBy="doc_opcode"
searchBy="doc_fift"
placeholder="Search for an opcode"
showKeys={[
{ key: 'doc_opcode', name: 'Opcode', isGrouped: true },
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import { appSpecificOpcodes as opcodes } from '@site/src/data/opcodes';

<SearchField
data={opcodes}
searchBy="doc_opcode"
searchBy="doc_fift"
placeholder="搜索操作码"
showKeys={[
{ key: 'doc_opcode', name: '操作码', isGrouped: true },
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import { arithmeticOpcodes as opcodes } from '@site/src/data/opcodes';

<SearchField
data={opcodes}
searchBy="doc_opcode"
searchBy="doc_fift"
placeholder="搜索操作码"
showKeys={[
{ key: 'doc_opcode', name: '操作码', isGrouped: true },
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import { cellManipulationOpcodes as opcodes } from '@site/src/data/opcodes';

<SearchField
data={opcodes}
searchBy="doc_opcode"
searchBy="doc_fift"
placeholder="搜索操作码"
showKeys={[
{ key: 'doc_opcode', name: '操作码', isGrouped: true },
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import { constantOpcodes as opcodes } from '@site/src/data/opcodes';

<SearchField
data={opcodes}
searchBy="doc_opcode"
searchBy="doc_fift"
placeholder="搜索操作码"
showKeys={[
{ key: 'doc_opcode', name: '操作码', isGrouped: true },
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import { continuationOpcodes as opcodes } from '@site/src/data/opcodes';

<SearchField
data={opcodes}
searchBy="doc_opcode"
searchBy="doc_fift"
placeholder="搜索操作码"
showKeys={[
{ key: 'doc_opcode', name: '操作码', isGrouped: true },
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import { comparisonOpcodes as opcodes } from '@site/src/data/opcodes';

<SearchField
data={opcodes}
searchBy="doc_opcode"
searchBy="doc_fift"
placeholder="搜索操作码"
showKeys={[
{ key: 'doc_opcode', name: '操作码', isGrouped: true },
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import { dictionaryManipulationOpcodes as opcodes } from '@site/src/data/opcodes

<SearchField
data={opcodes}
searchBy="doc_opcode"
searchBy="doc_fift"
placeholder="搜索操作码"
showKeys={[
{ key: 'doc_opcode', name: '操作码', isGrouped: true },
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import { exceptionOpcodes as opcodes } from '@site/src/data/opcodes';

<SearchField
data={opcodes}
searchBy="doc_opcode"
searchBy="doc_fift"
placeholder="搜索操作码"
showKeys={[
{ key: 'doc_opcode', name: '操作码', isGrouped: true },
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ import { miscellaneousOpcodes as opcodes } from '@site/src/data/opcodes';

<SearchField
data={opcodes}
searchBy="doc_opcode"
searchBy="doc_fift"
placeholder="搜索操作码"
showKeys={[
{ key: 'doc_opcode', name: '操作码', isGrouped: true },
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import { stackManipulationOpcodes as opcodes } from '@site/src/data/opcodes';

<SearchField
data={opcodes}
searchBy="doc_opcode"
searchBy="doc_fift"
placeholder="搜索操作码"
showKeys={[
{ key: 'doc_opcode', name: '操作码', isGrouped: true },
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import { tupleOpcodes as opcodes } from '@site/src/data/opcodes';

<SearchField
data={opcodes}
searchBy="doc_opcode"
searchBy="doc_fift"
placeholder="搜索操作码"
showKeys={[
{ key: 'doc_opcode', name: '操作码', isGrouped: true },
Expand Down
Loading