Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
F
frontend
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Jira
External wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
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
minerva
frontend
Commits
535420e5
Commit
535420e5
authored
1 year ago
by
mateuszmiko
Browse files
Options
Downloads
Plain Diff
Merge branch 'bug/display_svg_url' into 'development'
Bug/display svg url See merge request
!12
parents
837233d8
dba82b7d
No related branches found
No related tags found
2 merge requests
!223
reset the pin numbers before search results are fetch (so the results will be...
,
!12
Bug/display svg url
Pipeline
#78722
failed
1 year ago
Changes
3
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
@types/images.d.ts
+2
-2
2 additions, 2 deletions
@types/images.d.ts
next.config.js
+2
-2
2 additions, 2 deletions
next.config.js
src/shared/Icon/Icon.component.tsx
+7
-7
7 additions, 7 deletions
src/shared/Icon/Icon.component.tsx
with
11 additions
and
11 deletions
@types/images.d.ts
+
2
−
2
View file @
535420e5
...
@@ -10,12 +10,12 @@ declare module '*.png' {
...
@@ -10,12 +10,12 @@ declare module '*.png' {
export
default
content
;
export
default
content
;
}
}
declare
module
'
*.svg
'
{
declare
module
'
*.svg
?component
'
{
const
content
:
React
.
FC
<
React
.
SVGProps
<
SVGSVGElement
>>
;
const
content
:
React
.
FC
<
React
.
SVGProps
<
SVGSVGElement
>>
;
export
default
content
;
export
default
content
;
}
}
declare
module
'
*.svg
?url
'
{
declare
module
'
*.svg
'
{
const
content
:
any
;
const
content
:
any
;
export
default
content
;
export
default
content
;
}
}
...
...
This diff is collapsed.
Click to expand it.
next.config.js
+
2
−
2
View file @
535420e5
...
@@ -7,12 +7,12 @@ const nextConfig = {
...
@@ -7,12 +7,12 @@ const nextConfig = {
{
{
...
fileLoaderRule
,
...
fileLoaderRule
,
test
:
/
\.
svg$/i
,
test
:
/
\.
svg$/i
,
resourceQuery
:
/url/
,
resourceQuery
:
{
not
:
/component/
}
,
},
},
{
{
test
:
/
\.
svg$/i
,
test
:
/
\.
svg$/i
,
issuer
:
/
\.[
jt
]
sx
?
$/
,
issuer
:
/
\.[
jt
]
sx
?
$/
,
resourceQuery
:
{
not
:
/url/
}
,
resourceQuery
:
/component/
,
use
:
[
'
@svgr/webpack
'
],
use
:
[
'
@svgr/webpack
'
],
},
},
);
);
...
...
This diff is collapsed.
Click to expand it.
src/shared/Icon/Icon.component.tsx
+
7
−
7
View file @
535420e5
import
ChevronRightIcon
from
'
@/assets/vectors/icons/chevron-right.svg
'
;
import
ChevronRightIcon
from
'
@/assets/vectors/icons/chevron-right.svg
?component
'
;
import
ChevronLeftIcon
from
'
@/assets/vectors/icons/chevron-left.svg
'
;
import
ChevronLeftIcon
from
'
@/assets/vectors/icons/chevron-left.svg
?component
'
;
import
ChevronUpIcon
from
'
@/assets/vectors/icons/chevron-up.svg
'
;
import
ChevronUpIcon
from
'
@/assets/vectors/icons/chevron-up.svg
?component
'
;
import
ChevronDownIcon
from
'
@/assets/vectors/icons/chevron-down.svg
'
;
import
ChevronDownIcon
from
'
@/assets/vectors/icons/chevron-down.svg
?component
'
;
import
PlusIcon
from
'
@/assets/vectors/icons/plus.svg
'
;
import
PlusIcon
from
'
@/assets/vectors/icons/plus.svg
?component
'
;
import
ArrowIcon
from
'
@/assets/vectors/icons/arrow.svg
'
;
import
ArrowIcon
from
'
@/assets/vectors/icons/arrow.svg
?component
'
;
import
DotsIcon
from
'
@/assets/vectors/icons/dots.svg
'
;
import
DotsIcon
from
'
@/assets/vectors/icons/dots.svg
?component
'
;
type
Name
=
type
Name
=
|
'
chevron-right
'
|
'
chevron-right
'
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
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!
Save comment
Cancel
Please
register
or
sign in
to comment