Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
math_tutor_dev
public_math_tutor
Commits
25e17ca2
Commit
25e17ca2
authored
Apr 15, 2026
by
Kantz
Browse files
auswahl über buttons entfernt
parent
6968c5da
Changes
1
Hide whitespace changes
Inline
Side-by-side
math-tutor/frontend/src/pages/SocraticSelectionPage.tsx
View file @
25e17ca2
...
...
@@ -255,45 +255,6 @@ export default function SocraticSelectionPage() {
>
{
t
(
"
startSocratic
"
)
}
</
button
>
<
section
className
=
"socratic-link-section"
aria-labelledby
=
"socratic-link-list-title"
>
<
div
className
=
"task-select-header"
>
<
h3
className
=
"task-select-title"
id
=
"socratic-link-list-title"
>
{
t
(
"
socraticDeepLinkList
"
)
}
</
h3
>
</
div
>
<
p
className
=
"socratic-link-subtitle"
>
{
t
(
"
socraticDeepLinkListSubtitle
"
)
}
</
p
>
{
socraticLinkGroups
.
length
?
(
<
div
className
=
"socratic-link-groups"
>
{
socraticLinkGroups
.
map
((
group
)
=>
(
<
article
key
=
{
group
.
key
}
className
=
"socratic-link-group"
>
<
div
className
=
"socratic-link-group-header"
>
<
div
className
=
"socratic-link-group-title"
>
{
group
.
title
}
</
div
>
{
group
.
fileId
?
(
<
div
className
=
"socratic-link-group-meta"
>
{
group
.
fileId
}
</
div
>
)
:
null
}
</
div
>
<
div
className
=
"socratic-link-items"
>
{
group
.
entries
.
map
((
entry
)
=>
(
<
Link
key
=
{
entry
.
subsectionKey
}
className
=
"socratic-link-item"
to
=
{
entry
.
href
}
>
<
span
className
=
"socratic-link-item-title"
>
{
entry
.
label
}
</
span
>
<
span
className
=
"socratic-link-item-key"
>
{
entry
.
slug
}
</
span
>
{
entry
.
refsText
?
(
<
span
className
=
"socratic-link-item-meta"
>
{
entry
.
refsText
}
</
span
>
)
:
null
}
{
entry
.
summary
?
(
<
span
className
=
"socratic-link-item-summary"
>
{
entry
.
summary
}
</
span
>
)
:
null
}
</
Link
>
))
}
</
div
>
</
article
>
))
}
</
div
>
)
:
(
<
div
className
=
"task-panel-empty"
>
{
t
(
"
noSubsectionsAvailable
"
)
}
</
div
>
)
}
</
section
>
</
section
>
</
div
>
</
main
>
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment