Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
PIM
Itinerary
Commits
64ce342b
Commit
64ce342b
authored
May 16, 2021
by
Laurent Montel
😁
Browse files
Remove warning about empty string
parent
65540e10
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/app/AboutPage.qml
View file @
64ce342b
...
...
@@ -103,14 +103,14 @@ Kirigami.Page {
anchors.right
:
parent
.
right
}
QQC2.Label
{
text
:
i18n
(
"
Copyright: %1
"
,
model
.
copyright
)
text
:
model
.
copyright
!=
undefined
?
i18n
(
"
Copyright: %1
"
,
model
.
copyright
)
:
""
visible
:
model
.
copyright
!=
undefined
wrapMode
:
Text
.
WordWrap
anchors.left
:
parent
.
left
anchors.right
:
parent
.
right
}
QQC2.Label
{
text
:
i18n
(
"
Homepage: <a href=
\"
%1
\"
>%1</a>
"
,
model
.
url
)
text
:
model
.
url
!=
undefined
?
i18n
(
"
Homepage: <a href=
\"
%1
\"
>%1</a>
"
,
model
.
url
)
:
""
visible
:
model
.
url
!=
undefined
onLinkActivated
:
Qt
.
openUrlExternally
(
link
)
wrapMode
:
Text
.
WordWrap
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a 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