Skip to content

Commit

Permalink
fix: lint
Browse files Browse the repository at this point in the history
Signed-off-by: Cleopatra Enjeck M <patrathewhiz@gmail.com>
  • Loading branch information
enjeck committed Mar 13, 2024
1 parent b2dd259 commit a953fdb
Show file tree
Hide file tree
Showing 12 changed files with 14 additions and 13 deletions.
2 changes: 1 addition & 1 deletion appinfo/routes.php
Original file line number Diff line number Diff line change
Expand Up @@ -137,4 +137,4 @@
['name' => 'Context#removeNode', 'url' => '/api/2/contexts/{contextId}/nodes/{nodeRelId}', 'verb' => 'DELETE'],
['name' => 'Context#updateContentOrder', 'url' => '/api/2/contexts/{contextId}/pages/{pageId}', 'verb' => 'PUT'],
]
];
];
2 changes: 1 addition & 1 deletion lib/Controller/ContextController.php
Original file line number Diff line number Diff line change
Expand Up @@ -282,4 +282,4 @@ protected function contextsToArray(array $contexts): array {
}
return $result;
}
}
}
2 changes: 1 addition & 1 deletion lib/Db/Context.php
Original file line number Diff line number Diff line change
Expand Up @@ -60,4 +60,4 @@ public function jsonSerialize(): array {

return $data;
}
}
}
2 changes: 1 addition & 1 deletion lib/Db/ContextMapper.php
Original file line number Diff line number Diff line change
Expand Up @@ -216,4 +216,4 @@ protected function applyOwnedOrSharedQuery(IQueryBuilder $qb, string $userId): v
$qb->andWhere($whereExpression);
}
}
}
}
2 changes: 1 addition & 1 deletion lib/Db/ContextNodeRelation.php
Original file line number Diff line number Diff line change
Expand Up @@ -36,4 +36,4 @@ public function jsonSerialize(): array {
'permissions' => $this->getPermissions()
];
}
}
}
2 changes: 1 addition & 1 deletion lib/Db/ContextNodeRelationMapper.php
Original file line number Diff line number Diff line change
Expand Up @@ -32,4 +32,4 @@ public function findById(int $nodeRelId): ContextNodeRelation {
$row = $this->findOneQuery($qb);
return $this->mapRowToEntity($row);
}
}
}
2 changes: 1 addition & 1 deletion lib/Db/PageContentMapper.php
Original file line number Diff line number Diff line change
Expand Up @@ -57,4 +57,4 @@ public function findByNodeRelation(int $nodeRelId): array {

return $this->findEntities($qb);
}
}
}
2 changes: 1 addition & 1 deletion lib/Middleware/PermissionMiddleware.php
Original file line number Diff line number Diff line change
Expand Up @@ -87,4 +87,4 @@ protected function assertCanManageContext(): void {
}
}
}
}
}
2 changes: 1 addition & 1 deletion lib/Service/ContextService.php
Original file line number Diff line number Diff line change
Expand Up @@ -423,4 +423,4 @@ protected function insertNodesFromArray(Context $context, array $nodes): void {
}
$context->setNodes($addedNodes);
}
}
}
2 changes: 1 addition & 1 deletion src/modules/navigation/sections/Navigation.vue
Original file line number Diff line number Diff line change
Expand Up @@ -210,4 +210,4 @@ export default {
margin-top: 3vh;
}
}
</style>
</style>
1 change: 1 addition & 0 deletions src/pages/Context.vue
Original file line number Diff line number Diff line change
Expand Up @@ -183,6 +183,7 @@ export default {
.content {
margin: 50px 50px 0;
}
.resource {
margin: 40px 0;
}
Expand Down
6 changes: 3 additions & 3 deletions src/shared/components/ncContextResource/ResourceList.vue
Original file line number Diff line number Diff line change
Expand Up @@ -70,9 +70,9 @@ export default {

<style lang="scss" scoped>
.resource-list li {
display: flex;
justify-content: space-between;
line-height: 44px;
display: flex;
justify-content: space-between;
line-height: 44px;
}
.resource-label {
Expand Down

0 comments on commit a953fdb

Please sign in to comment.