Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Team 14 - IDATT1002
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Eirik Steira
Team 14 - IDATT1002
Merge requests
!164
minor fix on search
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
minor fix on search
fix/searchString
into
dev
Overview
0
Commits
1
Pipelines
1
Changes
1
Merged
Nicolay Schiøll-Johansen
requested to merge
fix/searchString
into
dev
4 years ago
Overview
0
Commits
1
Pipelines
1
Changes
1
Expand
0
0
Merge request reports
Viewing commit
a026f1b5
Show latest version
1 file
+
1
−
1
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
a026f1b5
minor fix on search
· a026f1b5
Nicolay Schiøll-Johansen
authored
4 years ago
src/main/java/NTNU/IDATT1002/controllers/Search.java
+
1
−
1
Options
@@ -86,7 +86,7 @@ public class Search extends NavBarController implements Initializable {
Text
title_Field
=
setText
(
"SKAL BILDENE HA TITTEL?"
,
700
,
66
,
"System Bold"
,
48
);
String
tagsString
=
TagService
.
getTagsAsString
(
images
.
get
(
i
).
getTags
());
Text
tag_Field
=
setText
(
tagsString
,
700
,
97
,
"System Bold"
,
24
);
Text
metadata_Field
=
setText
(
MetadataStringFormatter
.
format
(
images
.
get
(
i
).
getMetadata
(),
'
\n
'
),
700
,
126
,
"System Bold"
,
18
);
Text
metadata_Field
=
setText
(
MetadataStringFormatter
.
format
(
images
.
get
(
i
).
getMetadata
(),
"
\n
"
),
700
,
126
,
"System Bold"
,
18
);
VBox
metaBox
=
new
VBox
();
metaBox
.
getChildren
().
add
(
metadata_Field
);
ScrollPane
meta
=
new
ScrollPane
();
Loading