Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

update people #2776

Merged
merged 1 commit into from
May 10, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/feedback.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ description: Share what we need to explain better
labels:
- documentation
assignees:
- hanspagel
- bdbch
body:
- type: input
id: url
Expand Down
2 changes: 1 addition & 1 deletion .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,5 @@ updates:
interval: 'weekly'
day: 'monday'
reviewers:
- 'hanspagel'
- 'bdbch'

14 changes: 7 additions & 7 deletions demos/src/Examples/Tables/React/index.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -164,15 +164,15 @@ export default () => {
<td>actress</td>
</tr>
<tr>
<td>Philipp Kühn</td>
<td>designer</td>
<td>developer</td>
<td>maker</td>
<td>Marie Curie</td>
<td>scientist</td>
<td>chemist</td>
<td>physicist</td>
</tr>
<tr>
<td>Hans Pagel</td>
<td>wrote this</td>
<td colspan="2">that’s it</td>
<td>Indira Gandhi</td>
<td>prime minister</td>
<td colspan="2">politician</td>
</tr>
</tbody>
</table>
Expand Down
14 changes: 7 additions & 7 deletions demos/src/Examples/Tables/Vue/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -137,15 +137,15 @@ export default {
<td>actress</td>
</tr>
<tr>
<td>Philipp Kühn</td>
<td>designer</td>
<td>developer</td>
<td>maker</td>
<td>Marie Curie</td>
<td>scientist</td>
<td>chemist</td>
<td>physicist</td>
</tr>
<tr>
<td>Hans Pagel</td>
<td>wrote this</td>
<td colspan="2">that’s it</td>
<td>Indira Gandhi</td>
<td>prime minister</td>
<td colspan="2">politician</td>
</tr>
</tbody>
</table>
Expand Down
14 changes: 7 additions & 7 deletions demos/src/Experiments/All/Vue/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -238,15 +238,15 @@ export default {
<td>actress</td>
</tr>
<tr>
<td>Philipp Kühn</td>
<td>designer</td>
<td>developer</td>
<td>maker</td>
<td>Marie Curie</td>
<td>scientist</td>
<td>chemist</td>
<td>physicist</td>
</tr>
<tr>
<td>Hans Pagel</td>
<td>wrote this</td>
<td colspan="2">that’s it</td>
<td>Indira Gandhi</td>
<td>prime minister</td>
<td colspan="2">politician</td>
</tr>
</tbody>
</table>
Expand Down
28 changes: 14 additions & 14 deletions demos/src/Experiments/GenericFigure/Vue/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -193,15 +193,15 @@ export default {
<td>actress</td>
</tr>
<tr>
<td>Philipp Kühn</td>
<td>designer</td>
<td>developer</td>
<td>maker</td>
<td>Marie Curie</td>
<td>scientist</td>
<td>chemist</td>
<td>physicist</td>
</tr>
<tr>
<td>Hans Pagel</td>
<td>wrote this</td>
<td colspan="2">that’s it</td>
<td>Indira Gandhi</td>
<td>prime minister</td>
<td colspan="2">politician</td>
</tr>
</tbody>
</table>
Expand All @@ -220,15 +220,15 @@ export default {
<td>actress</td>
</tr>
<tr>
<td>Philipp Kühn</td>
<td>designer</td>
<td>developer</td>
<td>maker</td>
<td>Marie Curie</td>
<td>scientist</td>
<td>chemist</td>
<td>physicist</td>
</tr>
<tr>
<td>Hans Pagel</td>
<td>wrote this</td>
<td colspan="2">that’s it</td>
<td>Indira Gandhi</td>
<td>prime minister</td>
<td colspan="2">politician</td>
</tr>
</tbody>
</table>
Expand Down
4 changes: 2 additions & 2 deletions docs/api/extensions/collaboration-cursor.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,9 +44,9 @@ Pass an object with updated attributes of the current user. It expects a `name`

```js
editor.commands.updateUser({
name: 'Philipp Kühn',
name: 'John Doe',
color: '#000000',
avatar: 'https://unavatar.io/github/philippkuehn',
avatar: 'https://unavatar.io/github/ueberdosis',
})
```

Expand Down