Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
Lukeybooi committed May 3, 2023
2 parents 53609af + a92271e commit a2c0d86
Show file tree
Hide file tree
Showing 30 changed files with 335 additions and 422 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
using Abp.Dependency;
using Abp.Authorization;
using Abp.Dependency;
using Abp.Domain.Repositories;
using Castle.DynamicProxy;
using Microsoft.AspNetCore.Mvc;
Expand Down Expand Up @@ -83,9 +84,9 @@ public Task<JObject> CheckJObject()
}

[HttpGet]
[AbpAuthorize("Test")]
public Task CheckData()
{
var obj = Repository.GetAll().ToList();
return Task.CompletedTask;
}

Expand Down

This file was deleted.

41 changes: 0 additions & 41 deletions shesha-reactjs/src/components/collapsiblePanel/index.stories.tsx

This file was deleted.

63 changes: 0 additions & 63 deletions shesha-reactjs/src/components/collapsiblePanel/index.tsx

This file was deleted.

73 changes: 0 additions & 73 deletions shesha-reactjs/src/components/collapsiblePanel/styles/index.less

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@ import React, { useState } from 'react';
import { Story, Meta } from '@storybook/react';
import CollapsibleSidebarContainer, { ICollapsibleSidebarContainerProps } from './';
import { Alert, Col, Row } from 'antd';
import CollapsiblePanel from '../collapsiblePanel';
import CollapsiblePanel from '../panel';
// import './styles/index.less';

export default {
title: 'Components/CollapsibleSidebarContainer',
component: CollapsibleSidebarContainer
component: CollapsibleSidebarContainer
} as Meta;

const LoremIpsum = () => (
Expand Down
2 changes: 1 addition & 1 deletion shesha-reactjs/src/components/configurableForm/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ export const ConfigurableForm: FC<IConfigurableFormProps> = props => {
const showFormInfo = Boolean(persistedFormProps) && formInfoBlockVisible && formStatusInfo;

return (
<FormMarkupConverter markup={providedMarkup}>
<FormMarkupConverter markup={providedMarkup} formSettings={formSettings}>
{flatComponents => (
<FormProvider
name="Form"
Expand Down

This file was deleted.

This file was deleted.

This file was deleted.

Loading

0 comments on commit a2c0d86

Please sign in to comment.