Skip to content

Commit

Permalink
might work now
Browse files Browse the repository at this point in the history
  • Loading branch information
scottnath committed Mar 5, 2024
1 parent 3540a53 commit 29b8075
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/github/styles/user.css
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ section[itemscope] {
mask-image: var(--svg-people);
}

div {
:is(div) {
display: inline-flex;
flex-direction: row-reverse;
flex-wrap: nowrap;
Expand Down
6 changes: 3 additions & 3 deletions src/github/user/user.stories.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ export default {
console.log('args1', {...args})
let repos;
// console.log('args2!', JSON.stringify([parseFetchedRepo(repoProfileComponents), parseFetchedRepo(repoStorydocker)]).replace(/"/g, "||||"))
if (args.repos2) {
repos = args.repos2;
if (args.repos) {
repos = args.repos;
delete args.repos2;
}
let attributes = attrGen({...args});
Expand Down Expand Up @@ -52,7 +52,7 @@ export const UserRepos = {
args: {
...parseFetchedUser(userScottnath),
name: 'Scoot Nerth',
repos2: stringinator([parseFetchedRepo(repoProfileComponents), parseFetchedRepo(repoStorydocker)]),
repos: stringinator([parseFetchedRepo(repoProfileComponents), parseFetchedRepo(repoStorydocker)]),
},
play: async ({ args, canvasElement, step }) => {
console.log('UserRepos = canva', canvasElement.closest('body').innerHTML)
Expand Down

0 comments on commit 29b8075

Please sign in to comment.