Skip to content
Next
Projects
Groups
Snippets
Help
Sign in / Register
Toggle navigation
Minds Frontend
Project overview
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Locked Files
Issues
808
Merge Requests
55
CI / CD
Security & Compliance
Packages
Wiki
Snippets
Members
Collapse sidebar
Close sidebar
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Minds
Minds Frontend
Commits
826789e8
Commit
826789e8
authored
14 minutes ago
by
Olivia Madrid
Browse files
Options
Download
remove mini chart
parent
e00eb814
generic-layout-2194
1 merge request
!634
Analytics components refactor and summary tab
Pipeline
#94147697
failed with stages
in 12 minutes and 48 seconds
Changes
4
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
0 additions
and
38 deletions
+0
-38
src/app/common/components/mini-chart/mini-chart.component.html
deleted
100644 → 0
View file @
e00eb814
<p>
mini-chart works!
</p>
This diff is collapsed.
src/app/common/components/mini-chart/mini-chart.component.scss
deleted
100644 → 0
View file @
e00eb814
This diff is collapsed.
src/app/common/components/mini-chart/mini-chart.component.spec.ts
deleted
100644 → 0
View file @
e00eb814
import
{
async
,
ComponentFixture
,
TestBed
}
from
'
@angular/core/testing
'
;
import
{
MiniChartComponent
}
from
'
./mini-chart.component
'
;
describe
(
'
MiniChartComponent
'
,
()
=>
{
let
component
:
MiniChartComponent
;
let
fixture
:
ComponentFixture
<
MiniChartComponent
>
;
beforeEach
(
async
(()
=>
{
TestBed
.
configureTestingModule
({
declarations
:
[
MiniChartComponent
],
}).
compileComponents
();
}));
beforeEach
(()
=>
{
fixture
=
TestBed
.
createComponent
(
MiniChartComponent
);
component
=
fixture
.
componentInstance
;
fixture
.
detectChanges
();
});
it
(
'
should create
'
,
()
=>
{
expect
(
component
).
toBeTruthy
();
});
});
This diff is collapsed.
src/app/common/components/mini-chart/mini-chart.component.ts
deleted
100644 → 0
View file @
e00eb814
import
{
Component
,
OnInit
}
from
'
@angular/core
'
;
@
Component
({
selector
:
'
m-miniChart
'
,
templateUrl
:
'
./mini-chart.component.html
'
,
})
export
class
MiniChartComponent
implements
OnInit
{
constructor
()
{}
ngOnInit
()
{}
}
This diff is collapsed.
Please
register
or
sign in
to comment