Browse Source

Some texts fixed

pull/1/head
Sebastian 9 years ago
parent
commit
b674d28215
  1. 2
      src/Squidex/app/features/settings/pages/clients/client.component.html
  2. 2
      src/Squidex/app/shared/services/help.service.ts
  3. 1
      src/Squidex/app/shell/pages/internal/internal-area.component.scss

2
src/Squidex/app/features/settings/pages/clients/client.component.html

@ -36,7 +36,7 @@
</span> </span>
</div> </div>
<div class="client-expires">Access token expire after one hour</div> <div class="client-expires">Access tokens expire after 30 days</div>
</td> </td>
<td class="client-delete"> <td class="client-delete">
<button type="button" class="btn btn-link btn-danger" (click)="revoked.emit()"> <button type="button" class="btn btn-link btn-danger" (click)="revoked.emit()">

2
src/Squidex/app/shared/services/help.service.ts

@ -25,7 +25,7 @@ export class HelpService {
const result: string[] = []; const result: string[] = [];
for (let section of response.sections) { for (let section of response.sections) {
const content = section.content.replace(/href="\.\.\/GLOSSARY\.html/, 'target="_blank" href="https://docs.squidex.io/GLOSSARY.html'); const content = section.content.replace(/href="\.\.\/GLOSSARY\.html/g, 'target="_blank" href="https://docs.squidex.io/GLOSSARY.html');
result.push(content); result.push(content);
} }

1
src/Squidex/app/shell/pages/internal/internal-area.component.scss

@ -10,6 +10,7 @@
width: $size-sidebar-width - 2rem; width: $size-sidebar-width - 2rem;
padding-top: 0; padding-top: 0;
padding-bottom: 0; padding-bottom: 0;
cursor: pointer;
margin-top: -.2rem; margin-top: -.2rem;
margin-bottom: -.2rem; margin-bottom: -.2rem;
margin-right: 2rem; margin-right: 2rem;

Loading…
Cancel
Save