Skip to content

Commit aa77b14

Browse files
committed
disable required quick-nav, now check if there are links
1 parent 90db6eb commit aa77b14

File tree

4 files changed

+13
-16
lines changed

4 files changed

+13
-16
lines changed

content/english/technical-tools/implementation-tool.md

Lines changed: 8 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,10 @@ subtitle: >
1313
1414
image: /images/svg-illustrations/case_repository.svg
1515
quick_navigation:
16-
title: Quick navigation
16+
title: Quick nav
1717
links:
1818
- title: Outcomes questionnaires
19-
url: "#outcome"
20-
links:
21-
- title: Inner
22-
url: "#inner"
19+
url: '#outcome'
2320
---
2421

2522
{{< container_open icon="fa-solid fa-laptop-code" title="Is my data-driven application a high-impact algorithm or AI system?" id="intro" >}}
@@ -31,7 +28,7 @@ Implementation of the AI Act raises difficult questions. What is the scope of th
3128

3229
The questionnaires are designed to identify AI systems and their risk category using straightforward questions.
3330

34-
Since many straightforward algorithms that impact people are not considered AI systems, the first questionnaire also identifies _impactful algorithms_. The term 'impactful algorithms' is used by the Dutch government to refer to simple algorithms that do not meet the definition of an AI system under the AI Act but still require risk management measures. More information can be found in the <a href="https://algoritmes.pleio.nl/attachment/entity/f1a35292-7ea6-4e47-93fa-b3358e9ab2e0" target="_blank">Algorithm Registry Guidance Document</a> of the Dutch Ministry of the Interior.
31+
Since many straightforward algorithms that impact people are not considered AI systems, the first questionnaire also identifies *impactful algorithms*. The term 'impactful algorithms' is used by the Dutch government to refer to simple algorithms that do not meet the definition of an AI system under the AI Act but still require risk management measures. More information can be found in the <a href="https://algoritmes.pleio.nl/attachment/entity/f1a35292-7ea6-4e47-93fa-b3358e9ab2e0" target="_blank">Algorithm Registry Guidance Document</a> of the Dutch Ministry of the Interior.
3532

3633
All potential outcomes of the first questionnaire are shown in the [figure](/technical-tools/implementation-tool/#outcome) below on this webpage.
3734

@@ -43,11 +40,11 @@ All potential outcomes of the first questionnaire are shown in the [figure](/tec
4340

4441
The outcomes of the first questionnaire are displayed in the below figure. The following categories are distinguished:
4542

46-
- Algorithms: fall outside the scope of the AI Act, no additional control measures are needed.
47-
- Impactful algorithms: fall outside the scope of the AI Act, additional control measures are needed.
48-
- AI systems: are in scope of the AI Act, only additional control measures are needed in case of high-risk AI systems.
49-
- High risk AI systems: are in scope of the AI Act, additional control measures for high-risk AI systems are needed through harmonized standards.
50-
- Prohibited AI systems: are in scope of the AI Act, usage of this type of AI systems is prohibited in the European Union. More information about this category is provided by the <a href="https://www.digitaleoverheid.nl/achtergrondartikelen/welke-ai-praktijken-zijn-volgend-jaar-verboden/" target="_blank">Dutch government</a>.
43+
* Algorithms: fall outside the scope of the AI Act, no additional control measures are needed.
44+
* Impactful algorithms: fall outside the scope of the AI Act, additional control measures are needed.
45+
* AI systems: are in scope of the AI Act, only additional control measures are needed in case of high-risk AI systems.
46+
* High risk AI systems: are in scope of the AI Act, additional control measures for high-risk AI systems are needed through harmonized standards.
47+
* Prohibited AI systems: are in scope of the AI Act, usage of this type of AI systems is prohibited in the European Union. More information about this category is provided by the <a href="https://www.digitaleoverheid.nl/achtergrondartikelen/welke-ai-praktijken-zijn-volgend-jaar-verboden/" target="_blank">Dutch government</a>.
5148

5249
<br> <br> <img src="/images/ai-act-implementation-tool/Venn diagram EN.png" alt="drawing" width="600"/>
5350

themes/bigspring-light/layouts/_default/single.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ <h2 class="mb-4" style="color: #005aa7;">{{ .Title }}</h2>
3030
<section class="section">
3131
<div class="container">
3232
<div class="row">
33-
{{ if .Params.quick_navigation }}
33+
{{ if .Params.quick_navigation.links }}
3434
<div class="col-lg-4 col-12 mx-auto sticky-top">
3535
<div class="content">
3636
<div class="container-fluid mt-5 p-0">

tina/collections/shared/page/quick_navigation.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,13 @@ const quick_navigation: TinaField = {
1313
type: "string",
1414
name: "title",
1515
label: "Title",
16-
required: true,
16+
required: false,
1717
},
1818
{
1919
type: "object",
2020
name: "links",
2121
label: "Links",
22-
required: true,
22+
required: false,
2323
list: true,
2424
ui: {
2525
itemProps: (item) => {
@@ -43,7 +43,7 @@ const quick_navigation: TinaField = {
4343
type: "object",
4444
name: "links",
4545
label: "Links",
46-
required: true,
46+
required: false,
4747
list: true,
4848
ui: {
4949
itemProps: (item) => {

tina/tina-lock.json

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)