Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix importer vue issues. #3655

Merged
merged 1 commit into from
Jun 12, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Fix importer vue issues.
We currently depend on a "vue-strap" module to provide the modal dialog.
The default npm vue-strap is not compatible with vue2, so we need to use
a fork.  Update package.json to reflect this.  Probably makes sense to
move away from vue-strap in all my copious amounts of free time.
  • Loading branch information
dmeltzer committed Jun 11, 2017
commit 285d2eacf4cbcdfe85c9f4ccfb8e7ed9ca56fd83
4 changes: 2 additions & 2 deletions build/css/AdminLTE.css
Original file line number Diff line number Diff line change
Expand Up @@ -250,7 +250,7 @@ a:focus {
font-family: fontAwesome;
}
.main-header .sidebar-toggle:before {
content: "\f0c9";
content: "\F0C9";
}
.main-header .sidebar-toggle:hover {
color: #fff;
Expand Down Expand Up @@ -336,7 +336,7 @@ a:focus {
margin-right: 5px;
}
.content-header > .breadcrumb > li + li:before {
content: '>\00a0';
content: '>\A0';
}
@media (max-width: 991px) {
.content-header > .breadcrumb {
Expand Down
Loading