code
stringlengths
122
4.99k
label
int64
0
14
diff --git a/packages/simplebar/demo/Demo.js b/packages/simplebar/demo/Demo.js @@ -352,14 +352,13 @@ const Demo = () => { <section> <div className="col"> <h2>Render into iframe</h2> - <IFrame> + <IFrame width="800" height="600"> <ScrollContainer> - {[...Array(10)].map((x, i) => ( + {[...Array(30)].map((x, i) => ( <p ke...
7
diff --git a/make.js b/make.js @@ -60,7 +60,7 @@ async function buildStorePackage() { // Firefox needs clipboardRead and clipboardWrite for commands like "copyCurrentUrl", but Chrome does not. // See #4186. - const firefoxPermissions = manifestContents.permissions; + const firefoxPermissions = Array.from(manifestConten...
1
diff --git a/exampleSite/content/_index/table.md b/exampleSite/content/_index/table.md @@ -12,6 +12,15 @@ subtitle = "Customize your page with our various fragments" [[header.values]] text = "Description" +[[rows]] + [[rows.values]] + button = "404" + color = "link" + url = "fragments/404" + + [[rows.values]] + text = ...
0
diff --git a/map.html b/map.html const w = 10; const h = 12; + let dragSpec = null; + container.addEventListener('mousedown', e => { + dragSpec = { + startPosition: new THREE.Vector2(parseInt(container.style.left || '0', 10), parseInt(container.style.top || '0', 10)), + startX: e.clientX, + startY: e.clientY, + }; + })...
0
diff --git a/src/cn.js b/src/cn.js module.exports = () => { D.send = (x, y) => { if (D.ide && !D.ide.promptType - && !/Interrupt$|TreeList/.test(x)) return; + && !/Interrupt$|TreeList|Reply/.test(x)) return; sendEach([JSON.stringify([x, y])]); }; const a = rq('electron').remote.process.argv;
11
diff --git a/articles/logs/index.md b/articles/logs/index.md @@ -181,7 +181,6 @@ The following table lists the codes associated with the appropriate log events. | `gd_user_delete` | User delete | Deleted multi-factor user account. | [User Profile](/users/concepts/overview-user-profile) | | `limit_delegation` | Too Many...
2
diff --git a/src/upgrade/upgrade.js b/src/upgrade/upgrade.js @@ -155,35 +155,20 @@ function mongo_upgrade() { }); }) .then(() => P.join( - promise_utils.exec(`/usr/local/bin/node ${CORE_DIR}/src/tools/bcrypt_cli.js --bcrypt_password ${secret}`, { - ignore_rc: false, - return_stdout: true, - trim_stdout: true - }), prom...
2
diff --git a/userscript.user.js b/userscript.user.js @@ -8431,6 +8431,58 @@ var $$IMU_EXPORT$$; }); }; + common_functions.get_tiktok_from_ssstiktok = function(site, api_cache, do_request, url, cb) { + var get_token = function(cb) { + real_api_query(api_cache, do_request, "ssstiktok:token", { + url: "https://ssstiktok.i...
7
diff --git a/src/config/players.json b/src/config/players.json "type": "boolean", "default": true, "text": "Set custom title", - "args": "--title \"{name} - {game} - {status}\"" + "args": "--title \"$>{name} - {game} - {status}\"" }, { "name": "minimal",
8
diff --git a/source/_ext/ghreference.py b/source/_ext/ghreference.py @@ -17,7 +17,7 @@ class GitHubReference(Directive): option_spec = { 'folder': directives.unchanged, } - excluded_file_names = ['SNAPSHOT', '.nojekyll', 'template'] + excluded_file_names = ['SNAPSHOT', '.nojekyll', 'template', 'openapi3.yml','postman.j...
1
diff --git a/src/views/Wallet/WalletNFTs.vue b/src/views/Wallet/WalletNFTs.vue <template> <div class="nft-collectibles"> - <div v-if="!nftAssets"> + <div v-if="nftAssets"> <template v-for="(asset, key) in nftAssets"> <NFTAssets :nftAssets="asset" :collectionName="key" :key="asset.id" :source="source" /> </template> <p>...
3
diff --git a/token-metadata/0xfAE4Ee59CDd86e3Be9e8b90b53AA866327D7c090/metadata.json b/token-metadata/0xfAE4Ee59CDd86e3Be9e8b90b53AA866327D7c090/metadata.json "symbol": "CPC", "address": "0xfAE4Ee59CDd86e3Be9e8b90b53AA866327D7c090", "decimals": 18, - "dharmaVerificationStatus": { "dharmaVerificationStatus": "VERIFIED" ...
3
diff --git a/packages/testkit-backend/src/skipped-tests/common.js b/packages/testkit-backend/src/skipped-tests/common.js @@ -41,7 +41,7 @@ const skippedTests = [ ), skip( 'Partial session iteration is not supported by the js driver', - ifEquals('neo4j.sessionrun.TestSessionRun.test_partial_iteration'), + ifEquals('neo4...
14
diff --git a/ui/src/components/DocumentViewer/PdfViewer.scss b/ui/src/components/DocumentViewer/PdfViewer.scss @import "src/app/variables.scss"; -$pagesWidth: 200px; +$pagesWidth: 150px; .PdfViewer { + display: flex; + .outer { position: relative; background: transparent !important; + display: flex; + height: 100%; + f...
7
diff --git a/src/views/Wallet/NFTActivity.vue b/src/views/Wallet/NFTActivity.vue <div class="icons d-flex justify-content-center"> <span class="mr-2"> <NFTIcon class="asset-icon" /> - <img :src="getAssetIcon(asset)" :alt="`${asset}-icon`" class="asset-icon" /> + <img + :src="getAccountIcon(account.chain)" + :alt="`${ac...
3
diff --git a/docker/Dockerfile b/docker/Dockerfile FROM --platform=${TARGETPLATFORM:-linux/amd64} jc21/alpine-nginx-full:node +ARG TARGETPLATFORM +ARG BUILDPLATFORM ARG BUILD_VERSION ARG BUILD_COMMIT ARG BUILD_DATE @@ -22,8 +24,8 @@ RUN echo "fs.file-max = 65535" > /etc/sysctl.conf \ ENV NPM_BUILD_VERSION="${BUILD_VERS...
4
diff --git a/test/unit/@node-red/editor-api/lib/admin/nodes_spec.js b/test/unit/@node-red/editor-api/lib/admin/nodes_spec.js @@ -441,7 +441,7 @@ describe("api/admin/nodes", function() { nodes.init({ nodes:{ getModuleCatalog: function(opts) { - return Promise.resolve(opts); + return Promise.resolve({a:123}); } } }); @@ ...
1
diff --git a/editor/extensions/ext-connector.js b/editor/extensions/ext-connector.js @@ -171,7 +171,8 @@ svgEditor.addExtension("Connector", function(S) { // Grab the ends var parts = []; ['start', 'end'].forEach(function (pos, i) { - var part = elData(this, 'c_'+pos); + var key = 'c_' + pos; + var part = elData(this, ...
4
diff --git a/oxana/BrowseData.js b/oxana/BrowseData.js @@ -27,13 +27,44 @@ var BrowseData = function (_props) { enumerable:true }); + Object.defineProperty(this, "value", + { + get: function value() + { + return _textInput.value; + }, + set: function value(v) + { + _textInput.value = v; + }, + enumerable:true + }); + O...
12
diff --git a/articles/tutorials/calling-an-external-idp-api.md b/articles/tutorials/calling-an-external-idp-api.md @@ -29,8 +29,9 @@ If this is the first time you are requesting a Management APIv2 Token, you'll ne 1. Go to [Dashboard > APIs > Auth0 Management API > API Explorer](${manage_url}/#/apis/management/explorer...
0
diff --git a/lib/slide.js b/lib/slide.js @@ -43,20 +43,22 @@ class Slide extends EventTarget { activate() { if (this._isActive) return; - this._isActive = true; this.state.visitsCount++; this.element.classList.add(this.options.activeSlideClass); + + this._isActive = true; this.dispatchEvent(new Event('activate')); } de...
12
diff --git a/example/src/examples/WatercolorRasterTiles.js b/example/src/examples/WatercolorRasterTiles.js @@ -42,7 +42,9 @@ class WatercolorRasterTiles extends React.Component { render() { const rasterSourceProps = { id: 'stamenWatercolorSource', - url: 'https://stamen-tiles.a.ssl.fastly.net/watercolor/{z}/{x}/{y}.jpg...
3
diff --git a/core/pipeline-driver/lib/progress/nodes-progress.js b/core/pipeline-driver/lib/progress/nodes-progress.js @@ -14,7 +14,6 @@ const levels = { class ProgressManager { constructor() { - this._lastState = null; this._calc = this._default; this._throttledProgress = throttle(this._progress.bind(this), 1000, { tr...
3
diff --git a/packages/inferno/src/DOM/patching.ts b/packages/inferno/src/DOM/patching.ts @@ -63,7 +63,6 @@ export function patch( replaceWithNewNode(lastVNode, nextVNode, parentDOM, context, isSVG, lifecycle, animations); } else { // Last vNode is not in use, it has crashed at application level. Just mount nextVNode an...
7
diff --git a/README.md b/README.md @@ -92,18 +92,18 @@ curl -s https://api.spacexdata.com/v3/launches/latest | jq "reference_system": "geocentric", "regime": "low-earth", "longitude": null, - "semi_major_axis_km": 6997.303, - "eccentricity": 0.0011185, - "periapsis_km": 611.342, - "apoapsis_km": 626.995, - "inclination...
3
diff --git a/shared/types.js b/shared/types.js @@ -139,7 +139,6 @@ export type NotificationEventType = | 'REACTION_CREATED' | 'MESSAGE_CREATED' | 'THREAD_CREATED' - | 'THREAD_EDITED' | 'CHANNEL_CREATED' | 'DIRECT_MESSAGE_THREAD_CREATED' | 'USER_JOINED_COMMUNITY' @@ -147,7 +146,13 @@ export type NotificationEventType = ...
1
diff --git a/packages/slackbot-proxy/src/services/InstallerService.ts b/packages/slackbot-proxy/src/services/InstallerService.ts @@ -56,9 +56,9 @@ export class InstallerService { }, fetchInstallation: async(installQuery: InstallationQuery<boolean>) => { // eslint-disable-next-line @typescript-eslint/no-non-null-asserti...
7
diff --git a/scss/grid/_grid.scss b/scss/grid/_grid.scss @@ -12,7 +12,7 @@ $siimple-grid-margin-left: auto; $siimple-grid-margin-right: auto; //Grid row variables -$siimple-grid-row-margin: 0px; +$siimple-grid-row-margin: -10px; //Gird colum variables $siimple-grid-column-margin: 10px; @@ -29,8 +29,8 @@ $siimple-grid-c...
1
diff --git a/README.md b/README.md @@ -670,7 +670,7 @@ TheRubyRacer [hasn't updated LibV8](https://github.com/cowboyd/therubyracer/blob LibV8 itself is already [beyond version 7](https://github.com/cowboyd/libv8/releases/tag/v7.3.492.27.1) therefore many serverside issues are caused by old JS engines and fixed by using...
1
diff --git a/src/patches.js b/src/patches.js @@ -102,24 +102,20 @@ function generateObjectPatches( export function applyPatches(draft, patches) { for (let i = 0; i < patches.length; i++) { const patch = patches[i] - if (patch.path.length === 0 && patch.op === "replace") { + const {path} = patch + if (path.length === 0 ...
7
diff --git a/userscript.user.js b/userscript.user.js @@ -11834,6 +11834,9 @@ var $$IMU_EXPORT$$; "mq" ]; + // an = animated, replace to vi for this to work + src = src.replace(/\/an(_webp)?\/+/, "/vi$1/"); + var urls = [] for (var i = 0; i < sizes.length; i++) { var match = src.match(regex);
14
diff --git a/docs/permissions_list.md b/docs/permissions_list.md <td>allocateTokensMulti()</td> </tr> <tr> - <td rowspan=39>TransferManager</td> + <td rowspan=31>TransferManager</td> <td>CountTransferManager</td> <td>changeHolderCount()</td> <td>withPerm(ADMIN)</td> <td> changeHolderPercentage() </td> </tr> <tr> - <td ...
3
diff --git a/docs/sphinx_greenlight_instructions.md b/docs/sphinx_greenlight_instructions.md ## Getting Started -1. Grab our installer zip file from [here](https://drive.google.com/file/d/18IADHiNg7Ach3h0O3y5WPfbL5KEgocKE/view?usp=sharing). See the file integrity section below if you'd like to cross check this file. +1...
3
diff --git a/src/pages/Settings/Settings.js b/src/pages/Settings/Settings.js @@ -40,23 +40,27 @@ export default class Settings extends React.Component { steps: [ { target: '.chart', - content: 'This is my awesome feature!', + content: 'Here you can select a chart you want to use. It is shown on the Trading page.', }, {...
3
diff --git a/src/components/Footer.js b/src/components/Footer.js @@ -121,7 +121,7 @@ const Footer = ({ dark = false, children, ...props }) => ( For Clubs </Heading.h2> <Pages> - <Link to="/start/" children="Start" /> + <Link to="/start/" children="Get Started" /> <Link to="/apply/" children="Apply" /> <Link to="/challe...
10
diff --git a/test/jasmine/tests/gl2d_click_test.js b/test/jasmine/tests/gl2d_click_test.js @@ -346,6 +346,47 @@ describe('Test hover and click interactions', function() { .then(done); }); + it('@gl should show last point data for overlapped scattergl points with hovermode set to closest', function(done) { + var _mock =...
0
diff --git a/framer/Layer.coffee b/framer/Layer.coffee @@ -47,17 +47,17 @@ layerProperty = (obj, name, cssProperty, fallback, validator, transformer, optio @_properties[name] = value - elements = [@_element] - if targetElement - elements = [@[targetElement]] - elements.push(@_element) if includeMainElement + mainElemen...
7
diff --git a/src/ui/gauge.js b/src/ui/gauge.js @@ -49,7 +49,7 @@ phina.namespace(function() { }, setValue: function(value) { - value = Math.clamp(value, 0, this._maxValue); + value = Math.clamp(value, 0, this.maxValue); // end when now value equal value of argument if (this.value === value) return ;
1
diff --git a/src/components/dashboard/Withdraw.js b/src/components/dashboard/Withdraw.js @@ -91,22 +91,25 @@ class Withdraw extends Component<DashboardProps, DashboardState> { log.info({ event }) - // sender = this.getSenderAddress(event, 'from') - // const profile = await UserStorage.getUserProfile(sender) + const add...
1
diff --git a/modules/dacIdSystem.md b/modules/dacIdSystem.md -## DAC User ID Submodule +## AudienceOne User ID Submodule -DAC ID, provided by [D.A.Consortium Inc.](https://www.dac.co.jp/), is ID for ad targeting by using 1st party cookie. +AudienceOne ID, provided by [D.A.Consortium Inc.](https://www.dac.co.jp/), is ID...
10
diff --git a/metaversefile-api.js b/metaversefile-api.js @@ -347,9 +347,9 @@ metaversefile.setApi({ usePostProcessing() { return postProcessing; }, - createAvatar(o, options) { + /* createAvatar(o, options) { return new Avatar(o, options); - }, + }, */ useAvatarAnimations() { return Avatar.getAnimations(); }, @@ -864,9...
2
diff --git a/packages/app/src/components/Admin/ExportArchiveDataPage.jsx b/packages/app/src/components/Admin/ExportArchiveDataPage.jsx @@ -7,7 +7,7 @@ import * as toastr from 'toastr'; // import { toastSuccess, toastError } from '~/client/util/apiNotification'; import { apiDelete, apiGet } from '~/client/util/apiv1-cli...
14
diff --git a/articles/migrations/index.md b/articles/migrations/index.md @@ -79,9 +79,9 @@ If you have any questions, create a ticket in our [Support Center](${env.DOMAIN_ | --- | --- | --- | | Medium | 2017-12-21 | 2018-06-01 | -We are deprecating the usage of [ID Tokens](/tokens/id-token) as credentials when calling ...
3
diff --git a/package-lock.json b/package-lock.json } } }, - "eslint-import-resolver-alias": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/eslint-import-resolver-alias/-/eslint-import-resolver-alias-1.1.2.tgz", - "integrity": "sha512-WdviM1Eu834zsfjHtcGHtGfcu+F30Od3V7I9Fi57uhBEwPkjDcii7/yW8jAT+gOhn4P...
2
diff --git a/src/components/Modeler.vue b/src/components/Modeler.vue @@ -344,12 +344,15 @@ export default { }; }, validateDropTarget(transferData, { clientX, clientY }) { + /* You can drop a pool anywhere (a pool will not be embedded into another pool) */ if (transferData.type === poolId) { + this.allowDrop = true; ret...
1
diff --git a/common/lib/util/defaults.js b/common/lib/util/defaults.js @@ -222,7 +222,7 @@ Defaults.normaliseOptions = function(options) { } if(options.agents) { - for(let key in options.agents) { + for(var key in options.agents) { Defaults.agent += ' ' + key + '/' + options.agents[key]; } }
14
diff --git a/client/app/components/TopBar.js b/client/app/components/TopBar.js @@ -40,7 +40,7 @@ TopBar.propTypes = { export default connect( state => ({ roomId: state.roomId, - username: state.users[state.userId] ? state.users[state.userId].username : '-' + username: (state.users && state.users[state.userId] ) ? state...
1
diff --git a/src/plots/cartesian/axes.js b/src/plots/cartesian/axes.js @@ -1932,29 +1932,29 @@ axes.drawOne = function(gd, ax, opts) { push = {x: 0, y: 0, r: 0, l: 0, t: 0, b: 0}; var bbox = ax._boundingBox; - var titleOffset = getTitleOffset(gd, ax); + var pos = axes.getPxPosition(gd, ax); var anchorAxDomainIndex; var...
10
diff --git a/controllers/BaseController.php b/controllers/BaseController.php @@ -78,11 +78,6 @@ class BaseController $this->AppContainer = $container; } - public function Root(\Psr\Http\Message\ServerRequestInterface $request, \Psr\Http\Message\ResponseInterface $response, array $args) - { - return $response; - } - pro...
2
diff --git a/src/components/checkbox/Checkbox.js b/src/components/checkbox/Checkbox.js @@ -229,7 +229,7 @@ export default class CheckBoxComponent extends BaseComponent { return; } if (this.component.name) { - this.input.value = (value === this.component.value) ? 1 : 0; + this.input.value = (value === this.component.val...
12
diff --git a/assets/js/components/EntityHeaderBanner.js b/assets/js/components/EntityHeaderBanner.js @@ -73,7 +73,7 @@ const EntityHeaderBanner = () => { // Button is rendered as a sub-component and is set to `display: none`, // but the button itself remains on-screen (and thus this aria-label is // accessible to scree...
2
diff --git a/src/lib/set-up-and-tear-down.js b/src/lib/set-up-and-tear-down.js const compileRoute = require('./compile-route'); const FetchMock = {}; -const compareValues = (val1, val2) => !val1 || !val2 || val1 === val2; - -const getPropertyComparer = (route, propName) => route2 => - compareValues(route[propName], rou...
9
diff --git a/luci-app-openclash/root/etc/init.d/openclash b/luci-app-openclash/root/etc/init.d/openclash @@ -1172,6 +1172,7 @@ do_run_file() geoip_path="/etc/openclash/Country.mmdb" chnr_path="/etc/openclash/china_ip_route.ipset" chnr6_path="/etc/openclash/china_ip6_route.ipset" + cache_path="/etc/openclash/cache.db" r...
1
diff --git a/lib/webgl.js b/lib/webgl.js @@ -197,7 +197,7 @@ module.exports = function parseArgs (args_) { onDestroy = result.onDestroy } // workaround for chromium bug, premultiplied alpha value is platform dependent - contextAttributes.premultipliedAlpha = contextAttributes.premultipliedAlpha || true + contextAttribu...
11
diff --git a/test/server/player/putintoplay.spec.js b/test/server/player/putintoplay.spec.js @@ -12,8 +12,6 @@ describe('Player', function() { this.player.initialise(); spyOn(this.player, 'getDuplicateInPlay'); - spyOn(this.player, 'isCharacterDead'); - spyOn(this.player, 'canResurrect'); this.cardSpy = jasmine.createS...
2
diff --git a/ui/externs/ui.js b/ui/externs/ui.js @@ -99,8 +99,9 @@ shaka.extern.UIVolumeBarColors; * LANGUAGE_ROLE means both are shown, or just language if there is no role. * Defaults to LANGUAGE. * @property {number} fadeDelay - * The delay (in seconds) before fading out the controls. We recommend - * settings this ...
7
diff --git a/source/Loader.js b/source/Loader.js -/*global document, setTimeout, XMLHttpRequest, XDomainRequest, localStorage, O*/ +/*global document, setTimeout, XMLHttpRequest, localStorage, O*/ /* Object: O.Loader @@ -22,12 +22,8 @@ const moduleInfo = {}; let require; // eslint-disable-line prefer-const let loader; ...
2
diff --git a/src/pages/bank.js b/src/pages/bank.js @@ -47,7 +47,7 @@ class BankStats extends Component { if (transactionsTotalVolume) { return ( <Text maxWidth={32} f={3} my={4}> - {transactionsTotalVolume} transacted in the past {timeSince(launchDate, true, new Date(), true)} + {transactionsTotalVolume} transacted in ...
7
diff --git a/docs/guides/place-my-order.md b/docs/guides/place-my-order.md @@ -463,7 +463,7 @@ Now we can load a list of states and cities. ### Implement view model behavior -Now that we have identified the view model properties needed and have created the models necessary to load them, we can [define](https://canjs.co...
14
diff --git a/docs/tutorial/part-one/index.md b/docs/tutorial/part-one/index.md @@ -150,8 +150,8 @@ What you're seeing is the Gatsby.js development 404 page. Let's do what it says Make the second page component look something like: ```jsx -import React from 'react' -import Link from 'gatsby-link' +import React from "rea...
7
diff --git a/src/client/helpers/regexHelpers.js b/src/client/helpers/regexHelpers.js @@ -6,7 +6,7 @@ export const usernameURLRegex = /@([^/]+)/; export const categoryRegex = /\/([^/]+)/; -export const rewriteRegex = /"https?:\/\/(?:www)?steemit\.com((\/)(((\w+\/)?@\w+\/\w+)|(@\w+(\/(comments|followers|followed|reblogs|...
3
diff --git a/.github/renovate.json b/.github/renovate.json "groupName": "Emotion", "matchPackagePatterns": "@emotion/*" }, + { + "groupName": "Font awesome SVG icons", + "matchPackagePatterns": "@fortawesome/*" + }, { "groupName": "core-js", "matchPackageNames": ["core-js"],
0
diff --git a/src/server/node_services/nodes_monitor.js b/src/server/node_services/nodes_monitor.js @@ -1087,7 +1087,9 @@ class NodesMonitor extends EventEmitter { // to prevent collisions. if (item.node_from_store) { // calculate nodes cpu usage - item.cpu_usage = os_utils.calc_cpu_usage(info.os_info.cpus, item.node.os...
9
diff --git a/src/__experimental__/components/number/number.stories.js b/src/__experimental__/components/number/number.stories.js import React from 'react'; import { storiesOf } from '@storybook/react'; import { action } from '@storybook/addon-actions'; -import { State, Store } from '@sambego/storybook-state'; +import {...
14
diff --git a/src/components/rangeslider/draw.js b/src/components/rangeslider/draw.js @@ -276,7 +276,8 @@ function setPixelRange(rangeSlider, gd, axisOpts, opts) { .attr('x', pixelMax) .attr('width', opts._width - pixelMax); - // .. + // add offset for crispier corners + // https://github.com/plotly/plotly.js/pull/1409 ...
0
diff --git a/src/mixins/linkConfig.js b/src/mixins/linkConfig.js @@ -68,6 +68,7 @@ export default { this.shape.listenTo(this.sourceShape, 'change:position', this.updateWaypoints); this.shape.listenTo(targetShape, 'change:position', this.updateWaypoints); this.shape.on('change:vertices', this.updateWaypoints); + this.sh...
11
diff --git a/src/agent/block_store_services/block_store_client.js b/src/agent/block_store_services/block_store_client.js @@ -123,7 +123,7 @@ class BlockStoreClient { } = await rpc_client.block_store.delegate_write_block({ block_md, data_length: data.length }, options); try { - if (config.EXPERIMENTAL_DISABLE_S3_COMPATI...
2
diff --git a/test-complete/nodejs-optic-nodes.js b/test-complete/nodejs-optic-nodes.js @@ -494,4 +494,84 @@ describe('Nodejs Optic nodes json constructor test', function(){ }, done); }); + it('TEST 9 - construct complex JSON and xml node with queryAsStream and complexValues reference', function(done){ + var count = 0; ...
0
diff --git a/generators/client/templates/vue/src/main/webapp/content/css/loading.css.ejs b/generators/client/templates/vue/src/main/webapp/content/css/loading.css.ejs } .app-loading .lds-pacman > div:nth-child(1) div { position: absolute; - top: 92px; + top: 97px; left: -8px; width: 24px; - height: 24px; - border-radiu...
4
diff --git a/rss/initialize.js b/rss/initialize.js @@ -70,6 +70,7 @@ module.exports = function (con, rssLink, channel, callback) { //MySQL table names have a limit of 64 char if (feedName.length >= 64 ) feedName = feedName.substr(0,64); + feedName = feedName.replace(/\?/g, "") var processedItems = 0
1
diff --git a/Source/Scene/GltfLoader.js b/Source/Scene/GltfLoader.js import arrayFill from "../Core/arrayFill.js"; +import AttributeCompression from "../Core/AttributeCompression.js"; import Cartesian3 from "../Core/Cartesian3.js"; import Cartesian4 from "../Core/Cartesian4.js"; import Check from "../Core/Check.js"; @@...
9
diff --git a/README.md b/README.md @@ -65,6 +65,8 @@ $ npm test $ npm run cover ``` +Open `./coverage/lcov-report/index.html`. + ## Documentation You can find an overview, guides, full reference, and support in [`CARTO's developer center`](https://carto.com/developers/maps-api/). The [docs directory](https://github.com...
7
diff --git a/packages/idyll-astV2/src/index.js b/packages/idyll-astV2/src/index.js @@ -150,7 +150,7 @@ const getText = function (node) { const texts = []; walknodes(getChildren(node), (n) => { - if (typeof n === "string") { + if (n.type === "textnode") { texts.push(n); } });
1
diff --git a/admin-base/materialize/custom/_explorer.scss b/admin-base/materialize/custom/_explorer.scss height: 100%; .vue-form-generator { overflow: auto; - height: calc(100% - 55px); + height: 100%; padding: 0 0.75rem 55px 0.75rem; } .explorer-confirm-dialog {
7
diff --git a/magefile.go b/magefile.go @@ -14,6 +14,7 @@ import ( "github.com/magefile/mage/mg" // mg contains helpful utility functions, like Deps "github.com/magefile/mage/sh" // mg contains helpful utility functions, like Deps spartamage "github.com/mweagle/Sparta/magefile" + "github.com/pkg/browser" ) const localWo...
0
diff --git a/addon/-private/system/model/internal-model.js b/addon/-private/system/model/internal-model.js @@ -885,14 +885,14 @@ export default class InternalModel { let rel = this._relationships.get(name); rel.clear(); - // rel.removeInverseRelationships(); + rel.removeInverseRelationships(); } }); Object.keys(this._i...
13
diff --git a/app/src/scripts/common/forms/array-input.jsx b/app/src/scripts/common/forms/array-input.jsx @@ -185,12 +185,9 @@ class ArrayInput extends React.Component { helper: null, }) return - } else if ( - (itemValue.type === 'radio' && checkArr.length > 2) || - (itemValue.type === 'radio' && checkArr.length <= 1) -...
11
diff --git a/.storybook/webpack.config.js b/.storybook/webpack.config.js @@ -88,7 +88,7 @@ module.exports = ({ config }) => { { loader: 'sass-loader', options: { - prependData: BPK_TOKENS + additionalData: BPK_TOKENS ? fs.readFileSync( path.join( rootDir,
14
diff --git a/.circleci/config.yml b/.circleci/config.yml @@ -7,7 +7,7 @@ jobs: build: docker: # specify the version you desire here - - image: circleci/node:9.4.0-browsers + - image: circleci/node:9.11.1-browsers environment: - BINARY_PATH: "/home/circleci/repo/gaia"
3
diff --git a/.github/workflows/preDeploy.yml b/.github/workflows/preDeploy.yml @@ -101,7 +101,10 @@ jobs: WORKFLOW: cherryPick.yml INPUTS: '{ "PULL_REQUEST_NUMBER": "${{ needs.chooseDeployActions.outputs.mergedPullRequest }}", "NEW_VERSION": "${{ env.NEW_VERSION }}" }' - # Note: we need to create this tag but not push ...
7
diff --git a/metaversefile-api.js b/metaversefile-api.js @@ -566,7 +566,7 @@ metaversefile.setApi({ const localMatrix = new THREE.Matrix4(); // const localMatrix2 = new THREE.Matrix4(); physics.addBoxGeometry = (addBoxGeometry => function(position, quaternion, size, dynamic) { - const basePosition = position; + /* cons...
2
diff --git a/package.json b/package.json "scripts": { "start": "parcel serve index.html --open --no-cache", "build": "parcel build ./src/index.html", - "build:js": "parcel build ./core/index.js --global Monogatari --out-file monogatari.js --out-dir dist/engine --no-cache", + "build:js": "parcel build ./core/index.js --...
1
diff --git a/token-metadata/0x8933ea1Ce67B946BdF2436cE860fFBb53Ce814d2/metadata.json b/token-metadata/0x8933ea1Ce67B946BdF2436cE860fFBb53Ce814d2/metadata.json "symbol": "LINKETHRSI", "address": "0x8933ea1Ce67B946BdF2436cE860fFBb53Ce814d2", "decimals": 18, - "dharmaVerificationStatus": { "dharmaVerificationStatus": "VER...
3
diff --git a/src/js/controllers/onboarding/backupWarning.js b/src/js/controllers/onboarding/backupWarning.js @@ -42,7 +42,7 @@ angular.module('copayApp.controllers').controller('backupWarningController', fun $scope.goBack = function() { if ($stateParams.from == 'onboarding') { - $state.go($scope.toState, { + $state.go(...
1
diff --git a/Tests/web3swiftTests/localTests/web3swiftKeystoresTests.swift b/Tests/web3swiftTests/localTests/web3swiftKeystoresTests.swift @@ -73,7 +73,7 @@ class web3swiftKeystoresTests: XCTestCase { func testHMAC() throws { let seed = Data.fromHex("0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b")! let data = Data.fromHex("...
1
diff --git a/plugins/downloader/back.js b/plugins/downloader/back.js @@ -45,8 +45,9 @@ function handle(win) { let fileBuffer = songBuffer; try { - const coverBuffer = metadata.image.toPNG(); const writer = new ID3Writer(songBuffer); + if (metadata.image) { + const coverBuffer = metadata.image.toPNG(); // Create the met...
9
diff --git a/package-lock.json b/package-lock.json }, "node_modules/dota2": { "version": "7.0.3", - "resolved": "git+ssh://git@github.com/odota/node-dota2.git#da449dc124b3688927c2e24898b5a2d2cde60d04", + "resolved": "git+ssh://git@github.com/odota/node-dota2.git#5f91d19069c15b11dd51bff4918834b6b05be5b3", "license": "MI...
9
diff --git a/grocy.openapi.json b/grocy.openapi.json "tare_weight": { "type": "number" }, - "barcode": { - "type": "string", - "description": "Can contain multiple barcodes separated by comma" - }, "min_stock_amount": { "type": "number", "minimum": 0, "qu_id_purchase": "3", "qu_id_stock": "3", "qu_factor_purchase_to_st...
2
diff --git a/src/DevChatter.Bot.Web/wwwroot/js/overlay.js b/src/DevChatter.Bot.Web/wwwroot/js/overlay.js @@ -29,6 +29,7 @@ var overlay = (function () { connection.on("Hype", () => { doHype(); + window.requestAnimationFrame(render); }); connection.on("HangmanStart", () => { hangman.startGame(); @@ -41,7 +42,6 @@ var ove...
11
diff --git a/CHANGES.md b/CHANGES.md - The change was driven by the [SpartaTodoBackend](https://github.com/mweagle/SpartaTodoBackend) service's need to return both a body and HTTP location header. - See the [response](https://github.com/mweagle/SpartaTodoBackend/blob/master/service/todos.go#L79) for an example - :check...
0
diff --git a/test/specs/grapesjs/index.js b/test/specs/grapesjs/index.js @@ -69,10 +69,7 @@ describe('GrapesJS', () => { }); it('New editor is empty', () => { - var editor = obj.init({ - ...config, - baseCss: '#wrapper { background-color: #fff; }' - }); + var editor = obj.init(config); var html = editor.getHtml(); //va...
13
diff --git a/aws/cloudformation/util.go b/aws/cloudformation/util.go @@ -347,18 +347,23 @@ func parseFnJoinExpr(data map[string]interface{}) (*gocf.StringExpr, error) { } func stackCapabilities(template *gocf.Template) []*string { + capabilitiesMap := make(map[string]bool, 0) + // Only require IAM capability if the def...
0
diff --git a/activities/GameOfLife.activity/css/activity.css b/activities/GameOfLife.activity/css/activity.css @@ -233,13 +233,19 @@ canvas { @media screen and (min-width: 641px) and (max-width: 820px) { .generation-container { - height: 20px; - margin: 10px 0; + display: flex; + justify-content: center; + align-items:...
7
diff --git a/scripts/pack.js b/scripts/pack.js @@ -386,7 +386,7 @@ function packAddon(target) { return Promise.all(packLibs) .then((libsOk) => { // Replace openh264 if needed - let libOpenh264 = path.join(libDist, 'libopenh264.so.3'); + let libOpenh264 = path.join(libDist, 'libopenh264.so.4'); if (options['archive'] &&...
14
diff --git a/Sky.js b/Sky.js @@ -166,6 +166,31 @@ Sky.SkyShader = { ' return ONE_OVER_FOURPI * ( ( 1.0 - g2 ) * inverse );', '}', + `float mod289(float x){return x - floor(x * (1.0 / 289.0)) * 289.0;} + vec4 mod289(vec4 x){return x - floor(x * (1.0 / 289.0)) * 289.0;} + vec4 perm(vec4 x){return mod289(((x * 34.0) + 1.0...
0
diff --git a/src/components/SelectApp/index.js b/src/components/SelectApp/index.js @@ -9,7 +9,7 @@ import roleUtil from '../../utils/role'; @connect(({ user, teamControl }) => ({ currentUser: user.currentUser, - currentTeamPermissionsInfo: teamControl.currentTeamPermissionsInfo, + currentTeamPermissionsInfo: teamContro...
1
diff --git a/about.html b/about.html <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta http-equiv="X-UA-Compatible" content="ie=edge"> - <title>Travel Guid</title> + <title>Travel Guide</title> </head> <body> <h3>Travel Guide by Nerds!</h3>
1
diff --git a/token-metadata/0x2D80f5F5328FdcB6ECeb7Cacf5DD8AEDaEC94e20/metadata.json b/token-metadata/0x2D80f5F5328FdcB6ECeb7Cacf5DD8AEDaEC94e20/metadata.json "symbol": "AGA", "address": "0x2D80f5F5328FdcB6ECeb7Cacf5DD8AEDaEC94e20", "decimals": 4, - "dharmaVerificationStatus": { "dharmaVerificationStatus": "VERIFIED" }...
3
diff --git a/src/components/Story/StoryPreview.js b/src/components/Story/StoryPreview.js @@ -30,10 +30,7 @@ const StoryPreview = ({ post }) => { const embeds = embedjs.getAll(post.body); const preview = { - text: () => - (<div key="text" className="Story__content__body"> - <BodyShort body={post.body} /> - </div>), + te...
2
diff --git a/src/components/Leaderboard.js b/src/components/Leaderboard.js @@ -72,6 +72,7 @@ const Leaderboard = ({ content, limit = 100 }) => ( const avatarImg = hasGitHub ? `${githubUrl}${username}.png?size=40` : "https://github.com/random.png?size=40" + const avatarAlt = hasGitHub ? `${username} GitHub avatar` : "" ...
7