Skip to content

Commit

Permalink
Merge pull request #31 from lukashornych/dev
Browse files Browse the repository at this point in the history
Release catalog url fix
  • Loading branch information
lukashornych authored Sep 27, 2023
2 parents 76e8967 + b24d5db commit 58aef7c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
 
<a href="https://discord.gg/VsNBWxgmSw" title="Discord"><img src="https://img.shields.io/discord/999338870996992223?color=5865f2"/></a>
&nbsp;
<a href="https://github.com/lukashornych/evitalab/blob/master/LICENSE" title="License"><img src="https://img.shields.io/badge/license-MIT-blue.svg"/></a>
<a href="https://github.com/lukashornych/evitalab/blob/master/LICENSE" title="License"><img src="https://img.shields.io/github/license/lukashornych/evitalab"/></a>
</p>

evitaLab aims to provide a user-friendly client for evitaDB database to easily browse data stored in the database.
Expand Down
2 changes: 1 addition & 1 deletion src/services/lab.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ export class LabService {
private async fetchCatalogSchema(connection: EvitaDBConnection, catalogName: string): Promise<CatalogSchema> {
const catalog: Catalog = await this.getCatalog(connection, catalogName)

const fetchedCatalogSchema: CatalogSchema = await this.evitaDBClient.getCatalogSchema(connection, catalog.name)
const fetchedCatalogSchema: CatalogSchema = await this.evitaDBClient.getCatalogSchema(connection, catalog.nameVariants.kebabCase)

this.store.commit(
'lab/putCatalogSchema',
Expand Down

0 comments on commit 58aef7c

Please sign in to comment.