mirror of
https://github.com/directus/directus.git
synced 2026-04-25 03:00:53 -04:00
Remove no-break space characters with regular spaces (#11232)
There are quite a few other occurrences all over the translation files, some of which feel intentionally placed.
This commit is contained in:
committed by
GitHub
parent
f685c66185
commit
aa5da81fc0
2
.github/workflows/ci.yml
vendored
2
.github/workflows/ci.yml
vendored
@@ -27,7 +27,7 @@ jobs:
|
||||
steps:
|
||||
- name: Check for skippable jobs
|
||||
id: skip_check
|
||||
# Switch back to fkirc/skip-duplicate-actions@master once https://github.com/fkirc/skip-duplicate-actions/pull/159 has been merged
|
||||
# Switch back to fkirc/skip-duplicate-actions@master once https://github.com/fkirc/skip-duplicate-actions/pull/159 has been merged
|
||||
uses: paescuj/skip-duplicate-actions@path-filters
|
||||
# Don't skip any jobs if the pre-check should fail for any reason
|
||||
# (setting this on step-level makes sure the pre-check will still be marked as 'passed',
|
||||
|
||||
@@ -33,7 +33,7 @@ Learn more at...
|
||||
|
||||
## Installing
|
||||
|
||||
Directus requires NodeJS 10+. Create a new project with our simple CLI tool:
|
||||
Directus requires NodeJS 10+. Create a new project with our simple CLI tool:
|
||||
|
||||
```
|
||||
npm init directus-project my-project
|
||||
|
||||
@@ -31,7 +31,7 @@ const changes: [string, string, Record<string, any>?][] = [
|
||||
['toggle', 'boolean'],
|
||||
['translations', 'translations'],
|
||||
['tree-view', 'list-o2m-tree-view'],
|
||||
['user', 'select-dropdown-m2o', { template: '{{avatar.$thumbnail}} {{first_name}} {{last_name}}' }],
|
||||
['user', 'select-dropdown-m2o', { template: '{{avatar.$thumbnail}} {{first_name}} {{last_name}}' }],
|
||||
['wysiwyg', 'input-rich-text-html'],
|
||||
|
||||
// System:
|
||||
|
||||
@@ -30,7 +30,7 @@ const systemDefaults: Record<string, Partial<Preset>> = {
|
||||
cards: {
|
||||
icon: 'insert_drive_file',
|
||||
title: '{{ title }}',
|
||||
subtitle: '{{ type }} • {{ filesize }}',
|
||||
subtitle: '{{ type }} • {{ filesize }}',
|
||||
size: 4,
|
||||
imageFit: 'crop',
|
||||
},
|
||||
|
||||
@@ -25,7 +25,7 @@ ARG REPOSITORY=directus/directus
|
||||
LABEL directus.version="${VERSION}"
|
||||
|
||||
# Default environment variables
|
||||
# (see https://docs.directus.io/reference/environment-variables/)
|
||||
# (see https://docs.directus.io/reference/environment-variables/)
|
||||
ENV \
|
||||
DB_CLIENT="sqlite3" \
|
||||
DB_FILENAME="/directus/database/database.sqlite" \
|
||||
|
||||
@@ -49,11 +49,11 @@ The register function receives the two parameters `router` and `context`. `route
|
||||
`context` is an object with the following properties:
|
||||
|
||||
- `services` — All API internal services.
|
||||
- `exceptions` — API exception objects that can be used to throw "proper" errors.
|
||||
- `exceptions` — API exception objects that can be used to throw "proper" errors.
|
||||
- `database` — Knex instance that is connected to the current database.
|
||||
- `getSchema` — Async function that reads the full available schema for use in services
|
||||
- `env` — Parsed environment variables.
|
||||
- `logger` — [Pino](https://github.com/pinojs/pino) instance.
|
||||
- `env` — Parsed environment variables.
|
||||
- `logger` — [Pino](https://github.com/pinojs/pino) instance.
|
||||
- `emitter` — [Event emitter](https://github.com/directus/directus/blob/main/api/src/emitter.ts) instance that can be
|
||||
used to trigger custom events for other extensions.
|
||||
|
||||
|
||||
Reference in New Issue
Block a user