Skip to content

Commit

Permalink
Rename reactdom to react-dom
Browse files Browse the repository at this point in the history
  • Loading branch information
lukeshingles committed Dec 7, 2024
1 parent a8b6003 commit c720d00
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions atlasserver/forcephot/templates/tasklist-react.html
Original file line number Diff line number Diff line change
Expand Up @@ -136,10 +136,10 @@
"imports": {
{% if debug %}
"react": "https://esm.sh/react@19/?dev",
"reactdom": "https://esm.sh/react-dom@19/client?dev",
"react-dom": "https://esm.sh/react-dom@19/client?dev",
{% else %}
"react": "https://esm.sh/react@19",
"reactdom": "https://esm.sh/react-dom@19/client",
"react-dom": "https://esm.sh/react-dom@19/client",
{% endif %}
"newrequest": "{% static 'js/newrequest.min.js' %}"
}
Expand Down
2 changes: 1 addition & 1 deletion static/js/queuepage/src/tasklist.jsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
'use strict';

import React from "react"
import ReactDOM from 'reactdom';
import ReactDOM from 'react-dom';
import { NewRequest } from "newrequest";

class TaskPlot extends React.PureComponent {
Expand Down
2 changes: 1 addition & 1 deletion static/js/tasklist.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit c720d00

Please sign in to comment.