chore: change readme name on files
Signed-off-by: Alisson Fabiano <afabiano@eshopworld.com>
This commit is contained in:
@@ -63,7 +63,7 @@ type Props = {
|
||||
maxHeight?: number;
|
||||
};
|
||||
|
||||
export const ReadMeCard = (props: Props) => {
|
||||
export const ReadmeCard = (props: Props) => {
|
||||
const classes = useStyles();
|
||||
const api = useApi(azureDevOpsApiRef);
|
||||
const { entity } = useEntity();
|
||||
|
||||
@@ -14,4 +14,4 @@
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
export { ReadMeCard } from './ReadMeCard';
|
||||
export { ReadmeCard } from './ReadmeCard';
|
||||
|
||||
@@ -19,7 +19,7 @@ export {
|
||||
EntityAzurePipelinesContent,
|
||||
EntityAzureGitTagsContent,
|
||||
EntityAzurePullRequestsContent,
|
||||
EntityAzureReadMeContent,
|
||||
EntityAzureReadmeCard,
|
||||
isAzureDevOpsAvailable,
|
||||
isAzurePipelinesAvailable,
|
||||
AzurePullRequestsPage,
|
||||
|
||||
@@ -24,7 +24,7 @@ import {
|
||||
azurePullRequestDashboardRouteRef,
|
||||
azureGitTagsEntityContentRouteRef,
|
||||
azurePullRequestsEntityContentRouteRef,
|
||||
azureReadMeEntityContentRouteRef,
|
||||
azureReadmeEntityCardRouteRef,
|
||||
} from './routes';
|
||||
import {
|
||||
createApiFactory,
|
||||
@@ -102,10 +102,10 @@ export const EntityAzurePullRequestsContent = azureDevOpsPlugin.provide(
|
||||
}),
|
||||
);
|
||||
|
||||
export const EntityAzureReadMeContent = azureDevOpsPlugin.provide(
|
||||
export const EntityAzureReadmeCard = azureDevOpsPlugin.provide(
|
||||
createRoutableExtension({
|
||||
name: 'EntityAzureReadMeContent',
|
||||
component: () => import('./components/ReadMeCard').then(m => m.ReadMeCard),
|
||||
mountPoint: azureReadMeEntityContentRouteRef,
|
||||
name: 'EntityAzureReadmeCard',
|
||||
component: () => import('./components/ReadmeCard').then(m => m.ReadmeCard),
|
||||
mountPoint: azureReadmeEntityCardRouteRef,
|
||||
}),
|
||||
);
|
||||
|
||||
@@ -32,6 +32,6 @@ export const azurePullRequestsEntityContentRouteRef = createRouteRef({
|
||||
id: 'azure-pull-requests-entity-content',
|
||||
});
|
||||
|
||||
export const azureReadMeEntityContentRouteRef = createRouteRef({
|
||||
id: 'azure-readme-entity-content',
|
||||
export const azureReadmeEntityCardRouteRef = createRouteRef({
|
||||
id: 'azure-readme-entity-card',
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user