Skip to content

Commit

Permalink
Final tweaks
Browse files Browse the repository at this point in the history
  • Loading branch information
joelit committed Nov 2, 2021
1 parent 43f2e23 commit e7f3bef
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion model/VocabularyConfig.php
Original file line number Diff line number Diff line change
Expand Up @@ -459,7 +459,7 @@ public function getDefaultSidebarView()
$defview = $this->resource->getLiteral('skosmos:defaultSidebarView');
if ($defview) {
$value = $defview->getValue();
if ($value === 'groups' || $value === 'hierarchy' || $value == 'new') {
if ($value === 'groups' || $value === 'hierarchy' || $value === 'new') {
return $value;
}

Expand Down
2 changes: 1 addition & 1 deletion resource/css/styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -1553,7 +1553,7 @@ tr.replaced-by > td > ul > li > a {
.nav-tabs {
background-color: #e0e4e7;
border-bottom: none;
display: flex;
display: flex;
}

ul.nav-tabs > li {
Expand Down
2 changes: 1 addition & 1 deletion tests/GenericSparqlTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -1125,7 +1125,7 @@ public function testQueryChangeListCreatedNoDeprecated()
{
$voc = $this->model->getVocabulary('changes');
$graph = $voc->getGraph();
$sparql = new GenericSparql('http://localhost:13030/skosmos-test/sparql', $graph, $this->model);
$sparql = new GenericSparql($this->endpoint, $graph, $this->model);
$actual = $sparql->queryChangeList('dc:modified', 'en', 0, 10, false);

$order = array();
Expand Down

0 comments on commit e7f3bef

Please sign in to comment.