Skip to content

Commit

Permalink
Merge pull request #940 from Permify/next
Browse files Browse the repository at this point in the history
Next
  • Loading branch information
tolgaOzen committed Dec 16, 2023
2 parents 8b87e91 + 5b9c023 commit c679dfe
Show file tree
Hide file tree
Showing 9 changed files with 10 additions and 12 deletions.
2 changes: 1 addition & 1 deletion docs/apidocs.swagger.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"info": {
"title": "Permify API",
"description": "Permify is an open source authorization service for creating fine-grained and scalable authorization systems.",
"version": "v0.6.3",
"version": "v0.6.4",
"contact": {
"name": "API Support",
"url": "https://github.com/Permify/permify/issues",
Expand Down
2 changes: 1 addition & 1 deletion internal/info.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ var Identifier = xid.New().String()
*/
const (
// Version is the last release of the Permify (e.g. v0.1.0)
Version = "v0.6.3"
Version = "v0.6.4"

// Banner is the view for terminal.
Banner = `
Expand Down
2 changes: 1 addition & 1 deletion pkg/pb/base/v1/openapi.pb.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions playground/src/App.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import React, {useEffect} from "react";
import AppRouter from "./router/Router";
import {Layout} from "./utility/context/Layout"
import AppRouter from "./router/router";
import {Layout} from "./utility/context/layout"
import {ConfigProvider, theme} from 'antd';

function App() {
Expand Down
2 changes: 1 addition & 1 deletion playground/src/layout/MainLayout.js
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ const MainLayout = ({children, ...rest}) => {
</div>
<div className="ml-12">
<Select className="mr-8" value={label} style={{width: 220}}
onChange={handleSampleChange} showArrow={true}>
onChange={handleSampleChange}>
<OptGroup label="Use Cases">
<Option key="empty" value="empty">Empty</Option>
<Option key="organizations-hierarchies" value="organizations-hierarchies">Organizations & Hierarchies</Option>
Expand Down
4 changes: 1 addition & 3 deletions playground/src/pkg/Editor/yaml/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,7 @@ function YamlEditor(props) {

function handleEditorChange(value, event) {
try {
if (value !== props.code) {
props.setCode(value);
}
props.setCode(value);
} catch (error) {
console.error("Error while editing YAML: ", error);
}
Expand Down
2 changes: 1 addition & 1 deletion playground/src/router/Router.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import React, {Suspense} from "react"
import {BrowserRouter, Route, Routes} from "react-router-dom"
import Play from "../views/Play";
import P404 from "../views/404";
import {ContextLayout} from "../utility/context/Layout";
import {ContextLayout} from "../utility/context/layout";
import {Skeleton} from "antd";

export default function AppRouter() {
Expand Down
2 changes: 1 addition & 1 deletion playground/src/views/Play.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import React, {Suspense, useEffect, useState} from 'react'
import {useLocation} from "react-router-dom";
import {Skeleton} from "antd";
import {ContextLayout} from "../utility/context/Layout";
import {ContextLayout} from "../utility/context/layout";
import Output from "../layout/sides/output";
import {useShapeStore} from "../state/shape";
import {ToastContainer} from 'react-toastify';
Expand Down
2 changes: 1 addition & 1 deletion proto/base/v1/openapi.proto
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ option (grpc.gateway.protoc_gen_openapiv2.options.openapiv2_swagger) = {
info: {
title: "Permify API";
description: "Permify is an open source authorization service for creating fine-grained and scalable authorization systems.";
version: "v0.6.3";
version: "v0.6.4";
contact: {
name: "API Support";
url: "https://github.com/Permify/permify/issues";
Expand Down

0 comments on commit c679dfe

Please sign in to comment.